demarches-normaliennes/db/migrate/20240318092147_add_agent_connect_id_token_column_to_instructeur_table.rb
simon lehericey c1171cfd8b add id_token to instructeur
We use instructeur to store the id_token as the instructeur may have (in the migration and in the future) multiple agent connect information
2024-03-18 14:02:52 +01:00

5 lines
170 B
Ruby

class AddAgentConnectIdTokenColumnToInstructeurTable < ActiveRecord::Migration[7.0]
def change
add_column :instructeurs, :agent_connect_id_token, :string
end
end