mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
776caa507b
Ref T8726. Modularizes "Run build plan" in Differential and Diffusion.
6 lines
212 B
SQL
6 lines
212 B
SQL
UPDATE {$NAMESPACE}_herald.herald_action a
|
|
JOIN {$NAMESPACE}_herald.herald_rule r
|
|
ON a.ruleID = r.id
|
|
SET a.action = 'harbormaster.build'
|
|
WHERE r.ruleType != 'personal'
|
|
AND a.action = 'applybuildplans';
|