]> git.openstreetmap.org Git - rails.git/blobdiff - db/migrate/018_create_acls.rb
Merge branch 'master' into overpass
[rails.git] / db / migrate / 018_create_acls.rb
index c9fd1f3e7f957d709762f98632ba6c00a2275a78..08ed4f7316b8b9fad91873b7d0c067c91e0d5373 100644 (file)
@@ -1,17 +1,16 @@
+require 'migrate'
+
 class CreateAcls < ActiveRecord::Migration
   def self.up
     create_table "acls", myisam_table do |t|
       t.column "id",      :integer_pk, :null => false
-      t.column "address", :integer,    :null => false
-      t.column "netmask", :integer,    :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_index "acls", ["k"], :name => "acls_k_idx"
-
-    change_column "acls", "address", :integer, :null => false, :unsigned => true
-    change_column "acls", "netmask", :integer, :null => false, :unsigned => true
   end
 
   def self.down