migration : add forced_group_instructeur_to_dossier
This commit is contained in:
parent
e78c22f33c
commit
ce1429b850
2 changed files with 6 additions and 0 deletions
|
@ -17,6 +17,7 @@
|
|||
# en_construction_close_to_expiration_notice_sent_at :datetime
|
||||
# en_instruction_at :datetime
|
||||
# for_procedure_preview :boolean default(FALSE)
|
||||
# forced_groupe_instructeur :boolean
|
||||
# groupe_instructeur_updated_at :datetime
|
||||
# hidden_at :datetime
|
||||
# hidden_by_administration_at :datetime
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
class AddForcedGroupeInstructeurToDossier < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
add_column :dossiers, :forced_groupe_instructeur, :boolean, default: false, null: false
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue