mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
12 lines
291 B
Ruby
12 lines
291 B
Ruby
# frozen_string_literal:true
|
|
|
|
class AddOmniauthToUsers < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :users, :provider, :string
|
|
add_index :users, :provider
|
|
add_column :users, :uid, :string
|
|
add_index :users, :uid
|
|
remove_column :users, :sso_id, :integer
|
|
end
|
|
end
|