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

44 lines
660 B
PHP
Executable File

<?php
return array (
0 =>
array (
'id' =>
array (
'type' => 'bigint(20)',
'default' => NULL,
),
'user_id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'reported_by' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'created_at' =>
array (
'type' => 'datetime',
'default' => NULL,
),
'is_positive' =>
array (
'type' => 'tinyint(1)',
'default' => '1',
),
'body' =>
array (
'type' => 'text',
'default' => NULL,
),
),
1 =>
array (
'pri' =>
array (
0 => 'id',
),
),
)
;