Fixed a mismatched constraint value when creating the migration table

Signed-off-by: Jonathon Hill <jhill@brandmovers.com>
diff --git a/system/libraries/Migration.php b/system/libraries/Migration.php
index 2a06aa0..f67725c 100644
--- a/system/libraries/Migration.php
+++ b/system/libraries/Migration.php
@@ -153,7 +153,7 @@
 		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);