mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
10 lines
285 B
Ruby
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
|