demarches-normaliennes/db/migrate/20210114224721_add_external_id_to_champs.rb

6 lines
128 B
Ruby
Raw Normal View History

2021-01-14 23:53:02 +01:00
class AddExternalIdToChamps < ActiveRecord::Migration[6.0]
def change
add_column :champs, :external_id, :string
end
end