]> git.openstreetmap.org Git - rails.git/blobdiff - lib/migrate.rb
last of the auto_increments removed from the migrations
[rails.git] / lib / migrate.rb
index 782436af3ff4926e7c6d43e0f1ddac0affe416b2..77bc93646d0eef922d958973e4acd8481df69c79 100644 (file)
@@ -47,6 +47,8 @@ module ActiveRecord
         types[:bigint_pk] = { :name => "bigint(20) DEFAULT NULL auto_increment PRIMARY KEY" }
         types[:bigint_pk_64] = { :name => "bigint(64) DEFAULT NULL auto_increment PRIMARY KEY" }
         types[:bigint_auto_64] = { :name => "bigint(64) DEFAULT NULL auto_increment" }
+        types[:bigint_auto_11] = { :name => "bigint(11) DEFAULT NULL auto_increment" }
+        types[:bigint_auto_20] = { :name => "bigint(20) DEFAULT NULL auto_increment" }
         types
       end