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

54 lines
854 B
PHP
Executable File

<?php
return array (
0 =>
array (
'id' =>
array (
'type' => 'int(11)',
'default' => NULL,
),
'task_type' =>
array (
'type' => 'varchar(64)',
'default' => NULL,
),
'data_as_json' =>
array (
'type' => 'text',
'default' => NULL,
),
'status' =>
array (
'type' => 'varchar(64)',
'default' => NULL,
),
'status_message' =>
array (
'type' => 'text',
'default' => NULL,
),
'repeat_count' =>
array (
'type' => 'int(11)',
'default' => '0',
),
'created_at' =>
array (
'type' => 'datetime',
'default' => NULL,
),
'updated_at' =>
array (
'type' => 'datetime',
'default' => NULL,
),
),
1 =>
array (
'pri' =>
array (
0 => 'id',
),
),
)
;