summaryrefslogtreecommitdiff
path: root/lib/sql/migration/003-add-comment-parent.sql
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sql/migration/003-add-comment-parent.sql')
-rw-r--r--lib/sql/migration/003-add-comment-parent.sql7
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/sql/migration/003-add-comment-parent.sql b/lib/sql/migration/003-add-comment-parent.sql
deleted file mode 100644
index e6f9f64..0000000
--- a/lib/sql/migration/003-add-comment-parent.sql
+++ /dev/null
@@ -1,7 +0,0 @@
-BEGIN;
-ALTER TABLE "patchwork_comment" ADD COLUMN "parent_id" integer NULL;
-ALTER TABLE "patchwork_comment" ADD CONSTRAINT parent_id_refs_id_7b721867
- FOREIGN KEY ("parent_id")
- REFERENCES "patchwork_comment" ("id")
- DEFERRABLE INITIALLY DEFERRED;
-COMMIT;