Change target to '' if it matches system, as this matches the updated way of storing derivations.
7 lines
159 B
PL/PgSQL
7 lines
159 B
PL/PgSQL
-- Deploy guix-data-service:update_build_servers_build_config to pg
|
|
|
|
BEGIN;
|
|
|
|
UPDATE build_servers_build_config SET target = '' WHERE system = target;
|
|
|
|
COMMIT;
|