Sequenzia/db/table_schema/production/user_records.php

44 lines
660 B
PHP
Raw Normal View History

2013-10-27 01:06:58 +02:00
<?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',
),
),
)
;