7 lines
292 B
Ruby
7 lines
292 B
Ruby
|
class AddClosingNotificationsToProcedure < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
add_column :procedures, :closing_notification_brouillon, :boolean, default: false, null: false
|
||
|
add_column :procedures, :closing_notification_en_cours, :boolean, default: false, null: false
|
||
|
end
|
||
|
end
|