12 lines
352 B
SQL
12 lines
352 B
SQL
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 = (UNIX_TIMESTAMP() - dateModified);
|
|
|
|
|