greenlight/db/migrate/20190206210049_add_activation_to_users.rb
farhatahmad c60e25f71c GRN-56: Correctly implemented the account verification flow (#367)
* Correctly implemented the account verification flow

* Fixed issues with redirect locations
2019-02-22 16:47:02 -05:00

9 lines
211 B
Ruby

# frozen_string_literal: true
class AddActivationToUsers < ActiveRecord::Migration[5.0]
def change
add_column :users, :activation_digest, :string
add_column :users, :activated_at, :datetime
end
end