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/verify | |
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/verify')
-rw-r--r-- | sqitch/verify/nar_related_tables.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/verify/nar_related_tables.sql b/sqitch/verify/nar_related_tables.sql new file mode 100644 index 0000000..ae5c0e7 --- /dev/null +++ b/sqitch/verify/nar_related_tables.sql @@ -0,0 +1,7 @@ +-- Verify guix-data-service:nar_related_tables on pg + +BEGIN; + +-- XXX Add verifications here. + +ROLLBACK; |