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