diff options
| author | GitLab <gitlab@localhost> | 2014-04-16 21:03:54 +0200 |
|---|---|---|
| committer | GitLab <gitlab@localhost> | 2014-04-16 21:05:13 +0200 |
| commit | cf43bf3620f7b2600f5af168f7bf56c0129924f2 (patch) | |
| tree | 2df5f5a6ac3253c32b0307e8428bb49e35366350 /db/schema.rb | |
| parent | 0d3ba71bcb92218585988ca1b9f863a796d6e168 (diff) | |
| download | gitlab-ce-cf43bf3620f7b2600f5af168f7bf56c0129924f2.tar.gz | |
Add db index for active user display.
Diffstat (limited to 'db/schema.rb')
| -rw-r--r-- | db/schema.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/db/schema.rb b/db/schema.rb index 265d556bd27..0d3923b35c3 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -332,6 +332,7 @@ ActiveRecord::Schema.define(version: 20140414131055) do 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", ["current_sign_in_at"], name: "index_users_on_current_sign_in_at", using: :btree add_index "users", ["email"], name: "index_users_on_email", unique: true, using: :btree add_index "users", ["extern_uid", "provider"], name: "index_users_on_extern_uid_and_provider", unique: true, using: :btree add_index "users", ["name"], name: "index_users_on_name", using: :btree |
