2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/data-service.git synced 2023-12-14 03:23:03 +01:00
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

8 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;