1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Add missing keys to some tables

Summary: I wrote a little query plan plugin for "Services", it's not ready yet
but it found a few cases where we're doing table scans.
Test Plan:
https://secure.phabricator.com/file/view/PHID-FILE-374fd7e846a0ce27d5fb/
https://secure.phabricator.com/file/view/PHID-FILE-2f680de9b8c3c3b7089e/
https://secure.phabricator.com/file/view/PHID-FILE-742f645fcf011252ff25/

Reviewed By: jungejason
Reviewers: jungejason, tuomaspelkonen, aran
CC: aran, jungejason
Differential Revision: 627
This commit is contained in:
epriestley 2011-07-09 01:17:44 -07:00
parent 84c7ba24c3
commit 233a2055f1

View file

@ -0,0 +1,11 @@
ALTER TABLE phabricator_file.file
ADD UNIQUE KEY (phid);
ALTER TABLE phabricator_project.project
ADD UNIQUE KEY (phid);
ALTER TABLE phabricator_herald.herald_condition
ADD KEY (ruleID);
ALTER TABLE phabricator_herald.herald_action
ADD KEY (ruleID);