Fix SQL errors on migration
这个提交包含在:
父节点
969e75fba8
当前提交
c3b847b9a3
共有 1 个文件被更改,包括 3 次插入 和 2 次删除
|
|
@ -19,7 +19,8 @@ class Migration_create_dxpedition_table extends CI_Migration
|
|||
'type' => 'INT',
|
||||
'constraint' => 6,
|
||||
'unsigned' => TRUE,
|
||||
'auto_increment' => TRUE
|
||||
'auto_increment' => TRUE,
|
||||
'null' => FALSE
|
||||
),
|
||||
'start_date' => array(
|
||||
'type' => 'DATE',
|
||||
|
|
@ -32,7 +33,7 @@ class Migration_create_dxpedition_table extends CI_Migration
|
|||
'callsign' => array(
|
||||
'type' => 'VARCHAR',
|
||||
'constraint' => '255',
|
||||
'null' => TRUE,
|
||||
'null' => FALSE,
|
||||
),
|
||||
'country' => array(
|
||||
'type' => 'VARCHAR',
|
||||
|
|
|
|||
正在加载…
在新工单中引用