Modifies index on DeployTokens to use id

This commit is contained in:
Mayra Cabrera 2018-04-06 13:54:39 -05:00
parent 18a1569319
commit d6450717ab
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ class CreateDeployTokens < ActiveRecord::Migration
t.string :name, null: false
t.string :token, index: { unique: true }, null: false
t.index [:token, :expires_at], where: "(revoked IS FALSE)"
t.index [:token, :expires_at, :id], where: "(revoked IS FALSE)"
end
end
end

View File

@ -693,7 +693,7 @@ ActiveRecord::Schema.define(version: 20180405142733) do
t.string "token", null: false
end
add_index "deploy_tokens", ["token", "expires_at"], name: "index_deploy_tokens_on_token_and_expires_at", where: "(revoked IS FALSE)", using: :btree
add_index "deploy_tokens", ["token", "expires_at", "id"], name: "index_deploy_tokens_on_token_and_expires_at_and_id", where: "(revoked IS FALSE)", using: :btree
add_index "deploy_tokens", ["token"], name: "index_deploy_tokens_on_token", unique: true, using: :btree
create_table "deployments", force: :cascade do |t|