aboutsummaryrefslogtreecommitdiff
path: root/sqitch/sqlite
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2020-05-08 15:17:05 +0100
committerChristopher Baines <mail@cbaines.net>2020-05-08 15:17:05 +0100
commit628b7b78f6fd92d006c4db9d971dcad58df051b9 (patch)
tree0f3a48dbba5dd4703ca7c9c0b062f7e288e8c6a2 /sqitch/sqlite
parentbda7d58853ed4fba976cac92a70c4dc68db263aa (diff)
downloadbuild-coordinator-628b7b78f6fd92d006c4db9d971dcad58df051b9.tar
build-coordinator-628b7b78f6fd92d006c4db9d971dcad58df051b9.tar.gz
Add sqlite datastore support for storing unprocessed hook events
Diffstat (limited to 'sqitch/sqlite')
-rw-r--r--sqitch/sqlite/deploy/unprocessed_hook_events.sql11
-rw-r--r--sqitch/sqlite/revert/unprocessed_hook_events.sql7
-rw-r--r--sqitch/sqlite/verify/unprocessed_hook_events.sql7
3 files changed, 25 insertions, 0 deletions
diff --git a/sqitch/sqlite/deploy/unprocessed_hook_events.sql b/sqitch/sqlite/deploy/unprocessed_hook_events.sql
new file mode 100644
index 0000000..33fa86b
--- /dev/null
+++ b/sqitch/sqlite/deploy/unprocessed_hook_events.sql
@@ -0,0 +1,11 @@
+-- Deploy guix-build-coordinator:unprocessed_hook_events to sqlite
+
+BEGIN;
+
+CREATE TABLE unprocessed_hook_events (
+ id INTEGER PRIMARY KEY ASC,
+ event TEXT NOT NULL,
+ arguments TEXT NOT NULL
+);
+
+COMMIT;
diff --git a/sqitch/sqlite/revert/unprocessed_hook_events.sql b/sqitch/sqlite/revert/unprocessed_hook_events.sql
new file mode 100644
index 0000000..4a3137d
--- /dev/null
+++ b/sqitch/sqlite/revert/unprocessed_hook_events.sql
@@ -0,0 +1,7 @@
+-- Revert guix-build-coordinator:unprocessed_hook_events from sqlite
+
+BEGIN;
+
+-- XXX Add DDLs here.
+
+COMMIT;
diff --git a/sqitch/sqlite/verify/unprocessed_hook_events.sql b/sqitch/sqlite/verify/unprocessed_hook_events.sql
new file mode 100644
index 0000000..0a5fb28
--- /dev/null
+++ b/sqitch/sqlite/verify/unprocessed_hook_events.sql
@@ -0,0 +1,7 @@
+-- Verify guix-build-coordinator:unprocessed_hook_events on sqlite
+
+BEGIN;
+
+-- XXX Add verifications here.
+
+ROLLBACK;