2012-04-30 07:53:53 -07:00
|
|
|
ALTER TABLE {$NAMESPACE}_maniphest.maniphest_task
|
2012-04-02 12:12:04 -07:00
|
|
|
ADD subpriority DOUBLE NOT NULL;
|
|
|
|
|
|
2012-04-30 07:53:53 -07:00
|
|
|
ALTER TABLE {$NAMESPACE}_maniphest.maniphest_task
|
2012-04-02 12:12:04 -07:00
|
|
|
ADD KEY (priority, subpriority);
|
|
|
|
|
|
|
|
|
|
/* Seed the subpriority column with reasonable values that keep order stable. */
|
2012-04-30 07:53:53 -07:00
|
|
|
UPDATE {$NAMESPACE}_maniphest.maniphest_task
|
2012-04-02 12:26:50 -07:00
|
|
|
SET subpriority = (UNIX_TIMESTAMP() - dateModified);
|