diff options
author | Christopher Baines <mail@cbaines.net> | 2019-11-24 12:59:09 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-11-24 20:18:08 +0000 |
commit | 5663235048b7341b378634d083eaae9f13580e07 (patch) | |
tree | a714cd2c593517faaca2b01f754646ebc9ae7d41 /sqitch/revert | |
parent | 0ffd8caeeb8a0713300ed90bbcad1775078db0af (diff) | |
download | data-service-5663235048b7341b378634d083eaae9f13580e07.tar data-service-5663235048b7341b378634d083eaae9f13580e07.tar.gz |
Rework the builds and build_status tables as well as related code
Allow for build status information to be submitted by POST request. This
required some changes to the builds and build_status tables, as for example,
the Cuirass build id may not be available, and the derivation may not be know
yet, so just record the derivation file name.
Diffstat (limited to 'sqitch/revert')
-rw-r--r-- | sqitch/revert/rework_builds.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/revert/rework_builds.sql b/sqitch/revert/rework_builds.sql new file mode 100644 index 0000000..507808d --- /dev/null +++ b/sqitch/revert/rework_builds.sql @@ -0,0 +1,7 @@ +-- Revert guix-data-service:rework_builds from pg + +BEGIN; + +-- XXX Add DDLs here. + +COMMIT; |