mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 15:22:41 +01:00
8 lines
281 B
MySQL
8 lines
281 B
MySQL
|
UPDATE phabricator_differential.differential_revision SET
|
||
|
dateCommitted = (
|
||
|
SELECT MIN(dateCreated)
|
||
|
FROM phabricator_differential.differential_comment
|
||
|
WHERE revisionID = differential_revision.id AND action = 'commit'
|
||
|
)
|
||
|
WHERE status = 3 AND dateCommitted IS NULL;
|