add migrated champ routage to dossiers, procedures and procedure_revisions
This commit is contained in:
parent
c44614e7cc
commit
60cd9a5d0e
1 changed files with 7 additions and 0 deletions
|
@ -0,0 +1,7 @@
|
|||
class AddMigratedChampRoutageToDossiers < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :dossiers, :migrated_champ_routage, :boolean, default: false, null: false
|
||||
add_column :procedures, :migrated_champ_routage, :boolean, default: false, null: false
|
||||
add_column :procedure_revisions, :migrated_champ_routage, :boolean, default: false, null: false
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue