gitlabhq/db/migrate/20120803152018_add_provider_and_uid_to_users.rb

7 lines
159 B
Ruby
Raw Normal View History

2012-08-03 17:27:39 +02:00
class AddProviderAndUidToUsers < ActiveRecord::Migration
def change
add_column :users, :provider, :string
add_column :users, :uid, :string
end
end