X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e65e41a6942062ff044af0d31c41ca0e554343cc..ac7bb003ec9726d23d0a537f347c2dd4c8f7204a:/db/migrate/018_create_acls.rb diff --git a/db/migrate/018_create_acls.rb b/db/migrate/018_create_acls.rb index 08ed4f731..0db06f30c 100644 --- a/db/migrate/018_create_acls.rb +++ b/db/migrate/018_create_acls.rb @@ -2,11 +2,11 @@ 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