Sha256: 37c4271927b7f82c93afc37e75c2c9640943650eef82abb0a1af0c9f35089566

Contents?: true

Size: 1.33 KB

Versions: 9

Compression:

Stored size: 1.33 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

9 entries across 9 versions & 1 rubygems

Version Path
alchemy-devise-6.2.0 db/migrate/20131015124700_create_alchemy_users.rb
alchemy-devise-6.1.0 db/migrate/20131015124700_create_alchemy_users.rb
alchemy-devise-6.0.0 db/migrate/20131015124700_create_alchemy_users.rb
alchemy-devise-5.1.0 db/migrate/20131015124700_create_alchemy_users.rb
alchemy-devise-5.0.1 db/migrate/20131015124700_create_alchemy_users.rb
alchemy-devise-5.0.0 db/migrate/20131015124700_create_alchemy_users.rb
alchemy-devise-4.6.0 db/migrate/20131015124700_create_alchemy_users.rb
alchemy-devise-4.5.0 db/migrate/20131015124700_create_alchemy_users.rb
alchemy-devise-4.4.0 db/migrate/20131015124700_create_alchemy_users.rb