mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
14 lines
337 B
MySQL
14 lines
337 B
MySQL
|
ALTER TABLE phabricator_worker.worker_task
|
||
|
ADD dataID int unsigned;
|
||
|
|
||
|
ALTER TABLE phabricator_worker.worker_task
|
||
|
ADD UNIQUE KEY (dataID);
|
||
|
|
||
|
UPDATE phabricator_worker.worker_task t,
|
||
|
phabricator_worker.worker_taskdata d
|
||
|
SET t.dataID = d.id
|
||
|
WHERE d.taskID = t.id;
|
||
|
|
||
|
ALTER TABLE phabricator_worker.worker_taskdata
|
||
|
DROP taskID;
|