X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9c89bd53bf8493a287ad6659bd54adcc1966400c..0e7cc08c7b1055341dc01cfdc331fac1a13964c1:/db/migrate/018_create_acls.rb diff --git a/db/migrate/018_create_acls.rb b/db/migrate/018_create_acls.rb index d82020892..f4fb0799d 100644 --- a/db/migrate/018_create_acls.rb +++ b/db/migrate/018_create_acls.rb @@ -1,12 +1,12 @@ -require 'lib/migrate' +require "migrate" -class CreateAcls < ActiveRecord::Migration +class CreateAcls < ActiveRecord::Migration[5.0] 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