diff options
author | Christopher Baines <mail@cbaines.net> | 2020-06-27 13:58:21 +0100 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-06-27 14:05:51 +0100 |
commit | ddbe4c2192e2d45ab63971fe78baaf1ddba3ca91 (patch) | |
tree | afe7a7538b4d05ca0b7b878d1b1fffb23d8b9f92 /sqitch/revert | |
parent | 1d48885e6a4c245e3a65185f1768b40b5a47e883 (diff) | |
download | data-service-ddbe4c2192e2d45ab63971fe78baaf1ddba3ca91.tar data-service-ddbe4c2192e2d45ab63971fe78baaf1ddba3ca91.tar.gz |
Support storing the id's representing builds in other services
Like Cuirass, or the Guix Data Service. This isn't so necessary with Cuirass,
as the derivation/output are unique identifiers, but for the Guix Build
Coordinator, one derivation/output can be built many times, with potentially
differing results.
Diffstat (limited to 'sqitch/revert')
-rw-r--r-- | sqitch/revert/build_add_build_server_build_id.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/revert/build_add_build_server_build_id.sql b/sqitch/revert/build_add_build_server_build_id.sql new file mode 100644 index 0000000..c192cab --- /dev/null +++ b/sqitch/revert/build_add_build_server_build_id.sql @@ -0,0 +1,7 @@ +-- Revert guix-data-service:build_add_build_server_build_id from pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; |