summaryrefslogtreecommitdiff
path: root/makima/migrations
diff options
context:
space:
mode:
Diffstat (limited to 'makima/migrations')
-rw-r--r--makima/migrations/20260210000001_add_directive_pr_fields.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/makima/migrations/20260210000001_add_directive_pr_fields.sql b/makima/migrations/20260210000001_add_directive_pr_fields.sql
new file mode 100644
index 0000000..e72bb39
--- /dev/null
+++ b/makima/migrations/20260210000001_add_directive_pr_fields.sql
@@ -0,0 +1,3 @@
+ALTER TABLE directives ADD COLUMN pr_url TEXT;
+ALTER TABLE directives ADD COLUMN pr_branch VARCHAR(255);
+ALTER TABLE directives ADD COLUMN completion_task_id UUID REFERENCES tasks(id) ON DELETE SET NULL;