diff options
-rw-r--r-- | db/schema_0015-add_extra_to_comment.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/db/schema_0015-add_extra_to_comment.sql b/db/schema_0015-add_extra_to_comment.sql new file mode 100644 index 000000000..5c1789ea2 --- /dev/null +++ b/db/schema_0015-add_extra_to_comment.sql @@ -0,0 +1,6 @@ +begin; + +ALTER TABLE comment + ADD COLUMN extra TEXT; + +commit; |