class CreateLocationNetworks < ActiveRecord::Migration[6.0]
  def change
    create_table :location_networks do |t|
      t.string :network_name
      t.string :network_type
      t.string :network_configuration
      t.integer :cloned_network_id
      t.timestamps
    end
  end
end
