Sequenzia/db/table_schema/production/forum_posts.php
Parziphal 0ab3ef62b8 Added database tables for advertisements, controller is still missing.
Added IP columns to dmails, forum_posts, comments.
2013-11-19 10:54:12 -05:00

84 lines
1.4 KiB
PHP
Executable File

<?php
return array (
0 =>
array (
'id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'created_at' =>
array (
'type' => 'datetime',
'default' => NULL,
),
'updated_at' =>
array (
'type' => 'datetime',
'default' => NULL,
),
'title' =>
array (
'type' => 'text',
'default' => NULL,
),
'body' =>
array (
'type' => 'text',
'default' => NULL,
),
'creator_id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'parent_id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'last_updated_by' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'is_sticky' =>
array (
'type' => 'tinyint(1)',
'default' => '0',
),
'response_count' =>
array (
'type' => 'int(11)',
'default' => '0',
),
'is_locked' =>
array (
'type' => 'tinyint(1)',
'default' => '0',
),
'text_search_index' =>
array (
'type' => 'text',
'default' => NULL,
),
'ip_addr' =>
array (
'type' => 'varchar(255)',
'default' => NULL,
),
'updater_ip_addr' =>
array (
'type' => 'varchar(255)',
'default' => NULL,
),
),
1 =>
array (
'pri' =>
array (
0 => 'id',
),
),
)
;