Class: CreatePasswordResets

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/monban/templates/db/migrate/create_password_resets.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
# File 'lib/generators/monban/templates/db/migrate/create_password_resets.rb', line 2

def change
  create_table :password_resets do |t|
    t.belongs_to :user, index: true
    t.string :token

    t.timestamps
  end
end