Sequenzia/db/table_schema/production/batch_uploads.php
2013-10-26 18:06:58 -05:00

59 lines
925 B
PHP
Executable File

<?php
return array (
0 =>
array (
'id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'user_id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'ip' =>
array (
'type' => 'varchar(15)',
'default' => NULL,
),
'url' =>
array (
'type' => 'varchar(512)',
'default' => NULL,
),
'tags' =>
array (
'type' => 'text',
'default' => NULL,
),
'active' =>
array (
'type' => 'tinyint(1)',
'default' => '0',
),
'status' =>
array (
'type' => 'varchar(32)',
'default' => 'pending',
),
'created_at' =>
array (
'type' => 'datetime',
'default' => NULL,
),
'data_as_json' =>
array (
'type' => 'text',
'default' => NULL,
),
),
1 =>
array (
'pri' =>
array (
0 => 'id',
),
),
)
;