mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
12 lines
331 B
MySQL
12 lines
331 B
MySQL
|
ALTER TABLE phabricator_maniphest.maniphest_task
|
||
|
ADD subpriority DOUBLE NOT NULL;
|
||
|
|
||
|
ALTER TABLE phabricator_maniphest.maniphest_task
|
||
|
ADD KEY (priority, subpriority);
|
||
|
|
||
|
/* Seed the subpriority column with reasonable values that keep order stable. */
|
||
|
UPDATE phabricator_maniphest.maniphest_task
|
||
|
SET subpriority = dateModified;
|
||
|
|
||
|
|