Commit 367dee33 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'services-index' into 'master'

Add index on order columns for services table

See merge request !1492
parents 8c8fa63f aaa7a065
class AddMissingIndex < ActiveRecord::Migration
def change
add_index "services", [:created_at, :id]
end
end
......@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20150206222854) do
ActiveRecord::Schema.define(version: 20150209222013) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
......@@ -367,6 +367,7 @@ ActiveRecord::Schema.define(version: 20150206222854) do
t.text "properties"
end
add_index "services", ["created_at", "id"], name: "index_services_on_created_at_and_id", using: :btree
add_index "services", ["project_id"], name: "index_services_on_project_id", using: :btree
create_table "snippets", force: true do |t|
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment