class CreateAccessControlListLayerNines < ActiveRecord::Migration[6.0]
  def change
    create_table :access_control_list_layer_nines do |t|
      t.string :policy
      t.string :protocol
      t.string :src_ip

      t.timestamps
    end
  end
end
