X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/2e1414b229266eb2e263abf0ae94bd94a588b7ba..c4edac9fd8ca44c3a0c8a9dbee611f872fffe14b:/db/migrate/018_create_acls.rb diff --git a/db/migrate/018_create_acls.rb b/db/migrate/018_create_acls.rb index c9fd1f3e7..08ed4f731 100644 --- a/db/migrate/018_create_acls.rb +++ b/db/migrate/018_create_acls.rb @@ -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