17 lines
457 B
Ruby
17 lines
457 B
Ruby
class CreateAcls < ActiveRecord::Migration[4.2]
|
|
def self.up
|
|
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
|
|
|
|
add_index "acls", ["k"], :name => "acls_k_idx"
|
|
end
|
|
|
|
def self.down
|
|
drop_table "acls"
|
|
end
|
|
end
|