class CreateAccessControlLists < ActiveRecord::Migration[6.0]
  def change
    create_table :access_control_lists do |t|
      t.string :policy
      t.string :protocol
      t.string :src_ip
      t.string :scr_bitmask
      t.string :src_port
      # t.integer :organisation_id
      t.integer :acl_group_id
      t.timestamps
    end
  end
end
