asciinema.org/db/migrate/20131022163013_add_auth_token_to_users.rb
2013-10-22 19:16:18 +02:00

7 lines
153 B
Ruby

class AddAuthTokenToUsers < ActiveRecord::Migration
def change
add_column :users, :auth_token, :string
add_index :users, :auth_token
end
end