29 lines
683 B
Ruby
Executable File
29 lines
683 B
Ruby
Executable File
class CreateProductCustomers < ActiveRecord::Migration
|
|
def change
|
|
create_table :product_customers do |t|
|
|
t.string :email
|
|
|
|
t.string :password_digest, :null => false, :default => ""
|
|
|
|
## Recoverable
|
|
t.string :reset_password_token
|
|
t.datetime :reset_password_sent_at
|
|
|
|
## Rememberable
|
|
t.datetime :remember_created_at
|
|
|
|
## Trackable
|
|
t.integer :sign_in_count, :default => 0
|
|
t.datetime :current_sign_in_at
|
|
t.datetime :last_sign_in_at
|
|
t.string :current_sign_in_ip
|
|
t.string :last_sign_in_ip
|
|
|
|
t.boolean :lock
|
|
t.datetime :locked_at
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|