Sha256: ab3ad4fe73d16d89b61ff31df6908986a8e2c0964ed6ed5df2870aa8d435f55c

Contents?: true

Size: 840 Bytes

Versions: 68

Compression:

Stored size: 840 Bytes

Contents

class DeviseCreateParticipants < ActiveRecord::Migration
  def change
    create_table(:participants) do |t|
      ## Database authenticatable
      t.string :email,              :null => false, :default => ""
      t.string :encrypted_password, :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, :null => false
      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.timestamps
    end

    add_index :participants, :email,                :unique => true
    add_index :participants, :reset_password_token, :unique => true
  end
end

Version data entries

68 entries across 68 versions & 1 rubygems

Version Path
think_feel_do_engine-3.22.9 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.22.8 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.22.7 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.22.6 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.22.5 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.22.4 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.22.2 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.22.1 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.22.0 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.21.2 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.21.1 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.21.0 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.20.1 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.19.9 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.19.8 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.19.7 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.19.6 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.19.5 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.19.4 db/migrate/20140221182135_devise_create_participants.rb
think_feel_do_engine-3.19.3 db/migrate/20140221182135_devise_create_participants.rb