demarches-normaliennes/db/migrate/20221201103802_add_prefilled_to_champs.rb
2022-12-08 15:27:39 +01:00

5 lines
142 B
Ruby

class AddPrefilledToChamps < ActiveRecord::Migration[6.1]
def change
add_column :champs, :prefilled, :boolean, default: false
end
end