demarches-normaliennes/db/migrate/20201110155516_add_relations_to_deleted_dossiers.rb

10 lines
295 B
Ruby
Raw Permalink Normal View History

# 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