aboutsummaryrefslogtreecommitdiff
path: root/sqitch/deploy/git_repositories_job_priority.sql
diff options
context:
space:
mode:
Diffstat (limited to 'sqitch/deploy/git_repositories_job_priority.sql')
-rw-r--r--sqitch/deploy/git_repositories_job_priority.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sqitch/deploy/git_repositories_job_priority.sql b/sqitch/deploy/git_repositories_job_priority.sql
new file mode 100644
index 0000000..65f44e3
--- /dev/null
+++ b/sqitch/deploy/git_repositories_job_priority.sql
@@ -0,0 +1,7 @@
+-- Deploy guix-data-service:git_repositories_job_priority to pg
+
+BEGIN;
+
+ALTER TABLE git_repositories ADD COLUMN job_priority INTEGER NOT NULL DEFAULT 0;
+
+COMMIT;