@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1ALTER TABLE {$NAMESPACE}_maniphest.maniphest_task
2 ADD subpriority DOUBLE NOT NULL;
3
4ALTER TABLE {$NAMESPACE}_maniphest.maniphest_task
5 ADD KEY (priority, subpriority);
6
7/* Seed the subpriority column with reasonable values that keep order stable. */
8UPDATE {$NAMESPACE}_maniphest.maniphest_task
9 SET subpriority = (UNIX_TIMESTAMP() - dateModified);