2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2020-11-12 10:38:10 +01:00
|
|
|
class AddRelationsToDeletedDossiers < ActiveRecord::Migration[6.0]
|
|
|
|
def change
|
|
|
|
add_column :deleted_dossiers, :user_id, :bigint
|
|
|
|
add_column :deleted_dossiers, :groupe_instructeur_id, :bigint
|
|
|
|
add_column :deleted_dossiers, :revision_id, :bigint
|
|
|
|
end
|
|
|
|
end
|