X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3e99bbf5a9e124a59fc5ae72c863e89af7fa8c46..11cc4a5e601dd288d601e6e35a72d159062f18b5:/db/migrate/018_create_acls.rb diff --git a/db/migrate/018_create_acls.rb b/db/migrate/018_create_acls.rb index 08ed4f731..c5c7c7444 100644 --- a/db/migrate/018_create_acls.rb +++ b/db/migrate/018_create_acls.rb @@ -1,12 +1,12 @@ -require 'migrate' +require "migrate" -class CreateAcls < ActiveRecord::Migration +class CreateAcls < ActiveRecord::Migration[4.2] 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