aboutsummaryrefslogtreecommitdiff
path: root/sqitch/sqlite/deploy/output_metadata.sql
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-04-23 18:27:38 +0100
committerChristopher Baines <mail@cbaines.net>2020-04-23 19:30:55 +0100
commitd1020a834a09a76cd5c98fe81ebad2968b193872 (patch)
treea6f623c9a8d012f50ecc0d06ccc733a951f2dfd0 /sqitch/sqlite/deploy/output_metadata.sql
parent78287e9cc4a8c8f000ccb6e6e5641180274e0e8e (diff)
downloadbuild-coordinator-d1020a834a09a76cd5c98fe81ebad2968b193872.tar
build-coordinator-d1020a834a09a76cd5c98fe81ebad2968b193872.tar.gz
Send over some metadata from the agent for each output
This will hopefully make it easier to create narinfo files for the outputs. I think all of this information can be derived from the nar, but I'm not sure how to do that, so maybe this can eventually be removed.
Diffstat (limited to 'sqitch/sqlite/deploy/output_metadata.sql')
-rw-r--r--sqitch/sqlite/deploy/output_metadata.sql13
1 files changed, 13 insertions, 0 deletions
diff --git a/sqitch/sqlite/deploy/output_metadata.sql b/sqitch/sqlite/deploy/output_metadata.sql
new file mode 100644
index 0000000..a7c0124
--- /dev/null
+++ b/sqitch/sqlite/deploy/output_metadata.sql
@@ -0,0 +1,13 @@
+-- Deploy guix-build-coordinator:output_metadata to sqlite
+
+BEGIN;
+
+CREATE TABLE output_metadata (
+ build_id TEXT NOT NULL REFERENCES builds (uuid),
+ derivation_output_id INTEGER NOT NULL REFERENCES derivation_outputs (id),
+ hash TEXT NOT NULL,
+ size INTEGER NOT NULL,
+ store_references TEXT NOT NULL
+);
+
+COMMIT;