aboutsummaryrefslogtreecommitdiff
path: root/sqitch/deploy
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2019-11-30 10:51:58 +0000
committerChristopher Baines <mail@cbaines.net>2019-11-30 10:51:58 +0000
commitb6194e7b3d32d99ff4cd9f93f1438afaf489ab46 (patch)
tree155215c4d50ee5186fe5b9520365f53534f3e30a /sqitch/deploy
parent20c75e11038de62efd9fe8ae6ce41782f5a18172 (diff)
downloaddata-service-b6194e7b3d32d99ff4cd9f93f1438afaf489ab46.tar
data-service-b6194e7b3d32d99ff4cd9f93f1438afaf489ab46.tar.gz
Begin to add support for importing narinfo files
This commit adds the tables, as well as code to support extracting data from narinfo files.
Diffstat (limited to 'sqitch/deploy')
-rw-r--r--sqitch/deploy/nar_related_tables.sql53
1 files changed, 53 insertions, 0 deletions
diff --git a/sqitch/deploy/nar_related_tables.sql b/sqitch/deploy/nar_related_tables.sql
new file mode 100644
index 0000000..50bf9b0
--- /dev/null
+++ b/sqitch/deploy/nar_related_tables.sql
@@ -0,0 +1,53 @@
+-- Deploy guix-data-service:nar_related_tables to pg
+
+BEGIN;
+
+CREATE TABLE nars (
+ id integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
+ store_path varchar NOT NULL,
+ hash_algorithm varchar NOT NULL,
+ hash varchar NOT NULL,
+ size integer NOT NULL,
+ system varchar,
+ deriver varchar
+);
+
+CREATE TABLE nar_urls (
+ nar_id integer NOT NULL REFERENCES nars(id),
+ url varchar PRIMARY KEY,
+ compression varchar NOT NULL,
+ file_size integer NOT NULL
+);
+
+CREATE TABLE nar_references (
+ nar_id integer NOT NULL REFERENCES nars(id),
+ reference varchar NOT NULL
+);
+
+CREATE TABLE narinfo_signature_public_keys (
+ id integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
+ sexp_json jsonb NOT NULL,
+ UNIQUE (sexp_json)
+);
+
+CREATE TABLE narinfo_signature_data (
+ id integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY,
+ version integer NOT NULL,
+ host_name varchar NOT NULL,
+ data_hash varchar NOT NULL,
+ data_hash_algorithm varchar NOT NULL,
+ data_json jsonb NOT NULL,
+ sig_val_json jsonb NOT NULL,
+ narinfo_signature_public_key_id integer NOT NULL REFERENCES narinfo_signature_public_keys(id),
+ narinfo_body varchar NOT NULL,
+ narinfo_signature_line varchar NOT NULL,
+ UNIQUE (narinfo_signature_line)
+);
+
+CREATE TABLE narinfo_signatures (
+ nar_id integer NOT NULL REFERENCES nars(id),
+ narinfo_signature_data_id integer NOT NULL REFERENCES narinfo_signature_data(id),
+ UNIQUE (nar_id, narinfo_signature_data_id)
+);
+
+COMMIT;