2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-02-07 17:19:50 +01:00
|
|
|
class AddAdministrateurIdToArchives < ActiveRecord::Migration[7.0]
|
|
|
|
def change
|
|
|
|
add_column :archives, :user_profile_id, :bigint
|
|
|
|
add_column :archives, :user_profile_type, :string
|
|
|
|
end
|
|
|
|
end
|