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

59 lines
969 B
PHP
Executable File

<?php
return array (
0 =>
array (
'id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'name' =>
array (
'type' => 'varchar(128)',
'default' => NULL,
),
'description' =>
array (
'type' => 'text',
'default' => NULL,
),
'user_id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'is_active' =>
array (
'type' => 'tinyint(1)',
'default' => '1',
),
'created_at' =>
array (
'type' => 'datetime',
'default' => '0000-00-00 00:00:00',
),
'updated_at' =>
array (
'type' => 'datetime',
'default' => '0000-00-00 00:00:00',
),
'post_count' =>
array (
'type' => 'int(3)',
'default' => '0',
),
'is_public' =>
array (
'type' => 'binary(1)',
'default' => '1',
),
),
1 =>
array (
'pri' =>
array (
0 => 'id',
),
),
)
;