1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/db/migrate/20220425095244_add_mapped_from_sso_to_user.rb

10 lines
285 B
Ruby

# frozen_string_literal: true
# We save the data provided by the SSO provider in the user table. So we know,
# per user which data was provided or not.
class AddMappedFromSsoToUser < ActiveRecord::Migration[5.2]
def change
add_column :users, :mapped_from_sso, :string
end
end