demarches-normaliennes/db/migrate/20221201103802_add_prefilled_to_champs.rb

6 lines
126 B
Ruby
Raw Normal View History

2022-12-01 12:00:21 +01:00
class AddPrefilledToChamps < ActiveRecord::Migration[6.1]
def change
2022-12-08 14:20:21 +01:00
add_column :champs, :prefilled, :boolean
2022-12-01 12:00:21 +01:00
end
end