add requested_email column to france_connect_information table
This commit is contained in:
parent
c0970693f3
commit
94be599401
2 changed files with 6 additions and 0 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddAlternativeEmailColumnToFranceConnectInformationTable < ActiveRecord::Migration[7.0]
|
||||
def change
|
||||
add_column :france_connect_informations, :requested_email, :string
|
||||
end
|
||||
end
|
|
@ -712,6 +712,7 @@ ActiveRecord::Schema[7.0].define(version: 2024_08_29_141049) do
|
|||
t.string "given_name"
|
||||
t.string "merge_token"
|
||||
t.datetime "merge_token_created_at", precision: nil
|
||||
t.string "requested_email"
|
||||
t.datetime "updated_at", precision: nil, null: false
|
||||
t.integer "user_id"
|
||||
t.index ["email_merge_token"], name: "index_france_connect_informations_on_email_merge_token"
|
||||
|
|
Loading…
Reference in a new issue