You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
353 B
12 lines
353 B
2 years ago
|
class AddConfirmableUsers < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
change_table :users, bulk: true do |t|
|
||
|
t.column :confirmation_token, :string
|
||
|
t.column :confirmed_at, :datetime
|
||
|
t.column :confirmation_sent_at, :datetime
|
||
|
t.string :unconfirmed_email
|
||
|
end
|
||
|
add_index :users, :confirmation_token, unique: true
|
||
|
end
|
||
|
end
|