Submit social housing lettings and sales data (CORE)
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.
 
 
 
 

11 lines
353 B

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