mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
233a2055f1
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
11 lines
No EOL
259 B
SQL
11 lines
No EOL
259 B
SQL
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); |