aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema_0013-add_external_id_to_comment.sql
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema_0013-add_external_id_to_comment.sql')
-rw-r--r--db/schema_0013-add_external_id_to_comment.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/db/schema_0013-add_external_id_to_comment.sql b/db/schema_0013-add_external_id_to_comment.sql
new file mode 100644
index 000000000..a1cd11c3f
--- /dev/null
+++ b/db/schema_0013-add_external_id_to_comment.sql
@@ -0,0 +1,6 @@
+begin;
+
+ALTER TABLE comment
+ ADD COLUMN external_id TEXT;
+
+commit;