Fix SQL errors on migration

这个提交包含在:
phl0 2023-11-24 07:44:46 +01:00
父节点 969e75fba8
当前提交 c3b847b9a3
找不到此签名对应的密钥
GPG 密钥 ID: 48EA1E640798CA9A

查看文件

@ -19,7 +19,8 @@ class Migration_create_dxpedition_table extends CI_Migration
'type' => 'INT', 'type' => 'INT',
'constraint' => 6, 'constraint' => 6,
'unsigned' => TRUE, 'unsigned' => TRUE,
'auto_increment' => TRUE 'auto_increment' => TRUE,
'null' => FALSE
), ),
'start_date' => array( 'start_date' => array(
'type' => 'DATE', 'type' => 'DATE',
@ -32,7 +33,7 @@ class Migration_create_dxpedition_table extends CI_Migration
'callsign' => array( 'callsign' => array(
'type' => 'VARCHAR', 'type' => 'VARCHAR',
'constraint' => '255', 'constraint' => '255',
'null' => TRUE, 'null' => FALSE,
), ),
'country' => array( 'country' => array(
'type' => 'VARCHAR', 'type' => 'VARCHAR',