gitlabhq/db/migrate/20111115063954_add_authentication_token_to_users.rb

6 lines
139 B
Ruby
Raw Normal View History

2011-11-15 08:08:05 +01:00
class AddAuthenticationTokenToUsers < ActiveRecord::Migration
def change
add_column :users, :authentication_token, :string
end
end