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-20 18:33:40 +0200
commit5d3adc176f320e0ee6076528fd7a8c41a3ef533d (patch)
treebe4caa99d0343a7c31f0ff9e3ebd9c38a0f9a784 /db/schema.rb
parent31ff272f763a93b944cd288cc35c54e5c2645ebd (diff)
downloadgitlab-ce-fix/index-labels-on-title.tar.gz
Add index on labels titlefix/index-labels-on-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 3567908de03..eff34ecfb71 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: 20160913212128) do
+ActiveRecord::Schema.define(version: 20160920160832) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@@ -510,6 +510,7 @@ ActiveRecord::Schema.define(version: 20160913212128) 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