Sequenzia/db/table_schema/production/dmails.php

59 lines
917 B
PHP
Raw Normal View History

2013-10-27 01:06:58 +02:00
<?php
return array (
0 =>
array (
'id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'from_id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'to_id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'title' =>
array (
'type' => 'text',
'default' => NULL,
),
'body' =>
array (
'type' => 'text',
'default' => NULL,
),
'created_at' =>
array (
'type' => 'datetime',
'default' => NULL,
),
'has_seen' =>
array (
'type' => 'tinyint(1)',
'default' => '0',
),
'parent_id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'ip_addr' =>
array (
'type' => 'varchar(255)',
'default' => NULL,
),
2013-10-27 01:06:58 +02:00
),
1 =>
array (
'pri' =>
array (
0 => 'id',
),
),
)
;