From 275cf274860c6ed181d50b398efd3a21d7ba9135 Mon Sep 17 00:00:00 2001 From: Jonathon Hill Date: Mon, 12 Nov 2012 08:42:28 -0500 Subject: Fixed a mismatched constraint value when creating the migration table Signed-off-by: Jonathon Hill --- system/libraries/Migration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'system') 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); -- cgit v1.2.3-24-g4f1b