Skip to content
Snippets Groups Projects
Commit 0560b7a2 authored by Ahmad Sherif's avatar Ahmad Sherif
Browse files

Add index on labels title

parent 3b746412
No related branches found
No related tags found
No related merge requests found
class AddIndexToLabelsTitle < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def change
add_concurrent_index :labels, :title
end
end
Loading
Loading
@@ -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"
Loading
Loading
@@ -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
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment