mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-05 19:38:27 +01:00
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';
|