mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-18 12:52:42 +01: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:
parent
84c7ba24c3
commit
233a2055f1
1 changed files with 11 additions and 0 deletions
11
resources/sql/patches/058.missingkeys.sql
Normal file
11
resources/sql/patches/058.missingkeys.sql
Normal 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);
|
Loading…
Reference in a new issue