gitlabhq/db/migrate/20120803152018_add_provider_and_uid_to_users.rb
2012-08-17 15:20:55 +02:00

6 lines
159 B
Ruby

class AddProviderAndUidToUsers < ActiveRecord::Migration
def change
add_column :users, :provider, :string
add_column :users, :uid, :string
end
end