Sha256: 6e1e484c6e8be87550af95bd2e574035a37fd56f867f2a2f64902a76ccf10071
Contents?: true
Size: 709 Bytes
Versions: 2
Compression:
Stored size: 709 Bytes
Contents
class CreateTables < ActiveRecord::Migration def change create_table :users do |t| ## Database authenticatable t.string :email, :null => true, :default => "" t.string :encrypted_password, :null => true, :default => "" ## Recoverable t.string :reset_password_token t.datetime :reset_password_sent_at ## Confirmable t.string :confirmation_token t.datetime :confirmed_at t.datetime :confirmation_sent_at t.string :unconfirmed_email # Only if using reconfirmable t.string :username ## Imprintable t.datetime :first_sign_in_at t.string :first_sign_in_ip t.timestamps end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
devise_imprintable-0.0.3 | test/rails_app/db/migrate/20100401102949_create_tables.rb |
devise_imprintable-0.0.2 | test/rails_app/db/migrate/20100401102949_create_tables.rb |