mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
9219645287
Summary: Ref T5402. This more or less "fixes" it but there's probably some polish to do? Test Plan: stopped and started daemons. error logs look good. ran bin/storage upgrade. noted that `adjust` added the appropriate indices for active and archive task. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T5402 Differential Revision: https://secure.phabricator.com/D11044
5 lines
166 B
SQL
5 lines
166 B
SQL
ALTER TABLE {$NAMESPACE}_worker.worker_activetask
|
|
ADD objectPHID VARBINARY(64);
|
|
|
|
ALTER TABLE {$NAMESPACE}_worker.worker_archivetask
|
|
ADD objectPHID VARBINARY(64);
|