gitlabhq/db/migrate/20111115063954_add_authentication_token_to_users.rb
2011-11-15 11:08:05 +04:00

6 lines
139 B
Ruby

class AddAuthenticationTokenToUsers < ActiveRecord::Migration
def change
add_column :users, :authentication_token, :string
end
end