Sha256: b9a8ccbeb3186a068d89aa08a057113304fd722fb9f139f18dec01f34fb668ab

Contents?: true

Size: 1.14 KB

Versions: 7

Compression:

Stored size: 1.14 KB

Contents

class CreateAlchemyUsers < ActiveRecord::Migration[4.2]
  def up
    return if table_exists?(:alchemy_users)
    create_table "alchemy_users" do |t|
      t.string "firstname"
      t.string "lastname"
      t.string "login"
      t.string "email"
      t.string "language"
      t.string "encrypted_password", limit: 128, default: "", null: false
      t.string "password_salt", limit: 128, default: "", null: false
      t.integer "sign_in_count", default: 0, null: false
      t.integer "failed_attempts", default: 0, null: false
      t.datetime "last_request_at"
      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.datetime "created_at", null: false
      t.datetime "updated_at", null: false
      t.integer "creator_id"
      t.integer "updater_id"
      t.text "cached_tag_list"
      t.string "reset_password_token"
      t.datetime "reset_password_sent_at"
    end

    add_index "alchemy_users", ["email"], unique: true
    add_index "alchemy_users", ["login"], unique: true
    add_index "alchemy_users", ["reset_password_token"], unique: true
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
alchemy-devise-7.3.0 db/migrate/20131015124700_create_alchemy_users.rb
alchemy-devise-7.2.0 db/migrate/20131015124700_create_alchemy_users.rb
alchemy-devise-7.1.2 db/migrate/20131015124700_create_alchemy_users.rb
alchemy-devise-7.1.1 db/migrate/20131015124700_create_alchemy_users.rb
alchemy-devise-7.1.0 db/migrate/20131015124700_create_alchemy_users.rb
alchemy-devise-7.0.0 db/migrate/20131015124700_create_alchemy_users.rb
alchemy-devise-6.3.0 db/migrate/20131015124700_create_alchemy_users.rb