diff options
author | Clement Ho <clemmakesapps@gmail.com> | 2018-02-21 14:56:32 +0000 |
---|---|---|
committer | Clement Ho <clemmakesapps@gmail.com> | 2018-02-21 14:56:32 +0000 |
commit | 151a43c82e12e019cef62d1c54d9ebf944505325 (patch) | |
tree | 67e6d160e2f5686816e07685a82cc71223d0e45a /db/schema.rb | |
parent | f95bdc67845f8990aaa2c8a605b5ced459c5f5b4 (diff) | |
parent | 48b1455566a51f4dea6b3b86553d2f239266a1f9 (diff) | |
download | gitlab-ce-rest-of-dispatcher.tar.gz |
Merge branch 'master' into 'rest-of-dispatcher'rest-of-dispatcher
# Conflicts:
# app/assets/javascripts/dispatcher.js
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 6b43fc8403c..409d1ac7644 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20180208183958) do +ActiveRecord::Schema.define(version: 20180213131630) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -1468,6 +1468,7 @@ ActiveRecord::Schema.define(version: 20180208183958) do add_index "projects", ["created_at"], name: "index_projects_on_created_at", using: :btree add_index "projects", ["creator_id"], name: "index_projects_on_creator_id", using: :btree add_index "projects", ["description"], name: "index_projects_on_description_trigram", using: :gin, opclasses: {"description"=>"gin_trgm_ops"} + add_index "projects", ["id"], name: "index_projects_on_id_partial_for_visibility", unique: true, where: "(visibility_level = ANY (ARRAY[10, 20]))", using: :btree add_index "projects", ["last_activity_at"], name: "index_projects_on_last_activity_at", using: :btree add_index "projects", ["last_repository_check_failed"], name: "index_projects_on_last_repository_check_failed", using: :btree add_index "projects", ["last_repository_updated_at"], name: "index_projects_on_last_repository_updated_at", using: :btree |