mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-27 01:24:16 +00:00
Merge pull request #2722 from phl0/fixDxpeditionTable
Fix SQL errors on migration
This commit is contained in:
@@ -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',
|
||||
|
||||
Reference in New Issue
Block a user