vidpush/db/migrate/20140415165549_add_authentication_token_to_users.rb
2014-04-15 13:04:58 -04:00

6 lines
139 B
Ruby

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