aboutsummaryrefslogtreecommitdiff
path: root/sqitch/sqlite/deploy/add_agent_names.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sqitch/sqlite/deploy/add_agent_names.sql')
-rw-r--r--sqitch/sqlite/deploy/add_agent_names.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/sqlite/deploy/add_agent_names.sql b/sqitch/sqlite/deploy/add_agent_names.sql
new file mode 100644
index 0000000..bc2ec44
--- /dev/null
+++ b/sqitch/sqlite/deploy/add_agent_names.sql
@@ -0,0 +1,7 @@
+-- Deploy guix-build-coordinator:add_agent_names to sqlite
+
+BEGIN;
+
+ALTER TABLE agents ADD COLUMN name TEXT;
+
+COMMIT;