6 lines
139 B
Ruby
6 lines
139 B
Ruby
class AddAuthenticationTokenToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :authentication_token, :string
|
|
end
|
|
end
|