summaryrefslogtreecommitdiff
path: root/db/migrate/20151210030143_add_unlock_token_to_user.rb
blob: d23c648f7820be78ffa1adefd59b7cf6bb2cd2a4 (plain)
1
2
3
4
5
6
# rubocop:disable all
class AddUnlockTokenToUser < ActiveRecord::Migration
  def change
    add_column :users, :unlock_token, :string
  end
end