]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate/018_create_acls.rb
Merge pull request #28 from zerebubuth/routing-ui-tweaks-2
[rails.git] / db / migrate / 018_create_acls.rb
index 3606bd6704e5b51e7ae3c00d704f8259882905ff..0db06f30cba4978b8ee73ba23bacae8d8d7cc990 100644 (file)
@@ -1,19 +1,16 @@
+require 'migrate'
+
 class CreateAcls < ActiveRecord::Migration
   def self.up
-    create_table "acls", myisam_table do |t|
-      t.column "id",      :integer, :null => false
-      t.column "address", :integer, :null => false
-      t.column "netmask", :integer, :null => false
-      t.column "k",       :string,  :null => false
+    create_table "acls", :id => false do |t|
+      t.column "id",      :primary_key, :null => false
+      t.column "address", :inet, :null => false
+      t.column "netmask", :inet, :null => false
+      t.column "k",       :string, :null => false
       t.column "v",       :string
     end
 
-    add_primary_key "acls", ["id"]
     add_index "acls", ["k"], :name => "acls_k_idx"
-
-    change_column "acls", "id", :integer, :null => false, :options => "AUTO_INCREMENT"
-    change_column "acls", "address", :integer, :null => false, :unsigned => true
-    change_column "acls", "netmask", :integer, :null => false, :unsigned => true
   end
 
   def self.down