aboutsummaryrefslogtreecommitdiff
path: root/sqitch/sqlite/deploy/background-jobs-queue.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sqitch/sqlite/deploy/background-jobs-queue.sql')
-rw-r--r--sqitch/sqlite/deploy/background-jobs-queue.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/sqitch/sqlite/deploy/background-jobs-queue.sql b/sqitch/sqlite/deploy/background-jobs-queue.sql
new file mode 100644
index 0000000..1cb35f0
--- /dev/null
+++ b/sqitch/sqlite/deploy/background-jobs-queue.sql
@@ -0,0 +1,11 @@
+-- Deploy guix-build-coordinator:background-jobs-queue to sqlite
+
+BEGIN;
+
+CREATE TABLE background_jobs_queue (
+ id INTEGER PRIMARY KEY,
+ type TEXT NOT NULL,
+ args TEXT NOT NULL
+);
+
+COMMIT;