Sha256: e0679ced41c4f84ea162a052985366abf325c2f22e0d2a05f0dd9164deb28344
Contents?: true
Size: 319 Bytes
Versions: 16
Compression:
Stored size: 319 Bytes
Contents
class AddConfirmableToDevise < ActiveRecord::Migration def change change_table(:users) do |t| t.string :confirmation_token t.datetime :confirmed_at t.datetime :confirmation_sent_at t.string :unconfirmed_email end add_index :users, :confirmation_token, unique: true end end
Version data entries
16 entries across 16 versions & 1 rubygems