2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-02-15 10:59:43 +01:00
|
|
|
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
|