Files
railsgoat/db/migrate/20140312002642_add_auth_token_to_users.rb
T

6 lines
119 B
Ruby

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