Sequenzia/db/table_schema/production/inline_images.php
Parziphal cf9cba40b6 Fully enabled Inline Images.
A little detail: the "Add image" button was moved to a new table row, so it stands out more.
Known bugs/errors:
- When cropping an animated GIF inline (with a secondary JPG inline), although the images are correctly cropped, an empty error is displayed.
2013-12-31 14:22:59 -05:00

74 lines
1.2 KiB
PHP

<?php
return array (
0 =>
array (
'id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'inline_id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'md5' =>
array (
'type' => 'varchar(32)',
'default' => NULL,
),
'file_ext' =>
array (
'type' => 'varchar(4)',
'default' => NULL,
),
'description' =>
array (
'type' => 'text',
'default' => NULL,
),
'sequence' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'width' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'height' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'sample_width' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'sample_height' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'created_at' =>
array (
'type' => 'datetime',
'default' => NULL,
),
'updated_at' =>
array (
'type' => 'datetime',
'default' => NULL,
),
),
1 =>
array (
'pri' =>
array (
0 => 'id',
),
),
)
;