class CreateFirewallConfigs < ActiveRecord::Migration[6.0]
  def self.up
    create_table :firewall_configs do |t|
      t.string :name
      t.string :location_network_id

      t.timestamps
    end
  end
  def self.down
    drop_table :firewall_configs
  end
end
