guix-data-service/sqitch/deploy/update_build_servers_build_config.sql
Christopher Baines dfccbf911c Update the build_servers_build_config values
Change target to '' if it matches system, as this matches the updated way of
storing derivations.
2020-02-13 23:11:36 +00:00

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;