class CreateAclGroups < ActiveRecord::Migration[6.0]
  def change
    create_table :acl_groups do |t|
      t.string :group_name
      t.integer :organisation_id
      t.integer :router_inventory_id
      t.integer :location_network_id

      t.timestamps
    end
  end
end
