forked from External/greenlight
* Correctly implemented the account verification flow * Fixed issues with redirect locations
9 lines
211 B
Ruby
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
|