diff options
author | Christopher Baines <mail@cbaines.net> | 2019-11-30 10:51:58 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2019-11-30 10:51:58 +0000 |
commit | b6194e7b3d32d99ff4cd9f93f1438afaf489ab46 (patch) | |
tree | 155215c4d50ee5186fe5b9520365f53534f3e30a /sqitch/revert | |
parent | 20c75e11038de62efd9fe8ae6ce41782f5a18172 (diff) | |
download | data-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/revert')
-rw-r--r-- | sqitch/revert/nar_related_tables.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sqitch/revert/nar_related_tables.sql b/sqitch/revert/nar_related_tables.sql new file mode 100644 index 0000000..eeb1e9c --- /dev/null +++ b/sqitch/revert/nar_related_tables.sql @@ -0,0 +1,12 @@ +-- Revert guix-data-service:nar_related_tables from pg + +BEGIN; + +DROP TABLE narinfo_signatures; +DROP TABLE narinfo_signature_data; +DROP TABLE narinfo_signature_public_keys; +DROP TABLE nar_references; +DROP TABLE nar_urls; +DROP TABLE nars; + +COMMIT; |