diff options
author | Douwe Maan <douwe@selenight.nl> | 2017-10-12 15:38:24 +0200 |
---|---|---|
committer | Douwe Maan <douwe@selenight.nl> | 2017-11-02 11:39:03 +0100 |
commit | 9d6c7d9e9c3ed8ae81f6468afb76c9b11d1f3fd5 (patch) | |
tree | b198d4ecb55e39a8e8fbcfc425c24873913048ab /db/schema.rb | |
parent | 3111c2f58c9ea2002ed4cf92540a61bfcb8322f2 (diff) | |
download | gitlab-ce-9d6c7d9e9c3ed8ae81f6468afb76c9b11d1f3fd5.tar.gz |
Remove user authentication_token column
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/db/schema.rb b/db/schema.rb index 530f08022be..be381751238 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1670,7 +1670,6 @@ ActiveRecord::Schema.define(version: 20171017145932) do t.string "skype", default: "", null: false t.string "linkedin", default: "", null: false t.string "twitter", default: "", null: false - t.string "authentication_token" t.string "bio" t.integer "failed_attempts", default: 0 t.datetime "locked_at" @@ -1720,7 +1719,6 @@ ActiveRecord::Schema.define(version: 20171017145932) do end add_index "users", ["admin"], name: "index_users_on_admin", using: :btree - add_index "users", ["authentication_token"], name: "index_users_on_authentication_token", unique: true, using: :btree add_index "users", ["confirmation_token"], name: "index_users_on_confirmation_token", unique: true, using: :btree add_index "users", ["created_at"], name: "index_users_on_created_at", using: :btree add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree |