diff options
author | Jonathon Hill <jhill@brandmovers.com> | 2012-11-12 14:42:28 +0100 |
---|---|---|
committer | Jonathon Hill <jhill@brandmovers.com> | 2012-11-12 14:42:28 +0100 |
commit | 275cf274860c6ed181d50b398efd3a21d7ba9135 (patch) | |
tree | 0b65727384602cbfc0843a9b8479b9df2171613c /system/libraries/Migration.php | |
parent | 34c8b9c45fdcd2eb0eee5e2275a52e4c2faed5dc (diff) |
Fixed a mismatched constraint value when creating the migration table
Signed-off-by: Jonathon Hill <jhill@brandmovers.com>
Diffstat (limited to 'system/libraries/Migration.php')
-rw-r--r-- | system/libraries/Migration.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Migration.php b/system/libraries/Migration.php index 2a06aa011..f67725c18 100644 --- a/system/libraries/Migration.php +++ b/system/libraries/Migration.php @@ -153,7 +153,7 @@ class CI_Migration { if ( ! $this->db->table_exists($this->_migration_table)) { $this->dbforge->add_field(array( - 'version' => array('type' => 'BIGINT', 'constraint' => 3), + 'version' => array('type' => 'BIGINT', 'constraint' => 20), )); $this->dbforge->create_table($this->_migration_table, TRUE); |