X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/5449cf4adcc1fad4b9f43426e6d3e4a8f65e6fbb..3ab39f48ba67bd832999a255023671c6b7894528:/db/migrate/018_create_acls.rb diff --git a/db/migrate/018_create_acls.rb b/db/migrate/018_create_acls.rb index 5205b99b0..e5a524dc1 100644 --- a/db/migrate/018_create_acls.rb +++ b/db/migrate/018_create_acls.rb @@ -1,10 +1,12 @@ +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", :inet, :null => false - t.column "netmask", :inet, :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