diff options
author | Christopher Baines <mail@cbaines.net> | 2020-05-24 17:02:53 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-05-24 17:02:53 +0100 |
commit | b6754c8a4c1135a803fa72fbf4208d46c301b105 (patch) | |
tree | bf057704a4e0f6a121800ff936bc98ec967f1122 /sqitch/deploy | |
parent | f11421824dd22d4d5ad49ebc190e654ab62517ff (diff) | |
download | data-service-b6754c8a4c1135a803fa72fbf4208d46c301b105.tar data-service-b6754c8a4c1135a803fa72fbf4208d46c301b105.tar.gz |
Add a lookup_builds field to the build_servers table
This is to allow for build servers where only the substitutes should be
queried, and it shouldn't be assumed that they're running Cuirass.
Diffstat (limited to 'sqitch/deploy')
-rw-r--r-- | sqitch/deploy/build_servers_lookup_builds.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/deploy/build_servers_lookup_builds.sql b/sqitch/deploy/build_servers_lookup_builds.sql new file mode 100644 index 0000000..dc16602 --- /dev/null +++ b/sqitch/deploy/build_servers_lookup_builds.sql @@ -0,0 +1,7 @@ +-- Deploy guix-data-service:build_servers_lookup_builds to pg + +BEGIN; + +ALTER TABLE build_servers ADD COLUMN lookup_builds boolean NOT NULL DEFAULT TRUE; + +COMMIT; |