class CreateSwitchConfigurations < ActiveRecord::Migration[6.0]
  def change
    create_table :switch_configurations do |t|
      t.integer :organisation_id
      t.integer :location_network_id
      t.string :switch_model
      t.integer :hardware_part_id

      t.timestamps
    end
  end
end
