mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
21 lines
547 B
MySQL
21 lines
547 B
MySQL
|
ALTER TABLE phabricator_maniphest.maniphest_task
|
||
|
ADD ownerOrdering varchar(64);
|
||
|
|
||
|
ALTER TABLE phabricator_maniphest.maniphest_task
|
||
|
ADD UNIQUE KEY (phid);
|
||
|
|
||
|
ALTER TABLE phabricator_maniphest.maniphest_task
|
||
|
ADD KEY (priority, status);
|
||
|
|
||
|
ALTER TABLE phabricator_maniphest.maniphest_task
|
||
|
ADD KEY (status);
|
||
|
|
||
|
ALTER TABLE phabricator_maniphest.maniphest_task
|
||
|
ADD KEY (ownerPHID, status);
|
||
|
|
||
|
ALTER TABLE phabricator_maniphest.maniphest_task
|
||
|
ADD KEY (authorPHID, status);
|
||
|
|
||
|
ALTER TABLE phabricator_maniphest.maniphest_task
|
||
|
ADD KEY (ownerOrdering);
|