summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorAhmad Sherif <me@ahmadsherif.com>2016-09-20 18:32:51 +0200
committerAhmad Sherif <me@ahmadsherif.com>2016-09-23 13:19:16 +0200
commit0560b7a2ab87382cbbf60e62c76085eb686da284 (patch)
tree8864295849ba0fe90b93d8aa5b9305b23cc12a1d /db/schema.rb
parent3b746412834d194e1f4b593b9b63fa711591981e (diff)
downloadgitlab-ce-0560b7a2ab87382cbbf60e62c76085eb686da284.tar.gz
Add index on labels title
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 59b3e237707..425fc33b7b3 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: 20160915042921) do
+ActiveRecord::Schema.define(version: 20160920160832) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -521,6 +521,7 @@ ActiveRecord::Schema.define(version: 20160915042921) do
add_index "labels", ["priority"], name: "index_labels_on_priority", using: :btree
add_index "labels", ["project_id"], name: "index_labels_on_project_id", using: :btree
+ add_index "labels", ["title"], name: "index_labels_on_title", using: :btree
create_table "lfs_objects", force: :cascade do |t|
t.string "oid", null: false