1
mirror of https://gitlab.com/commento/commento.git synced 2025-04-28 06:30:28 -04:00
commento/db/20190913175445-delete-comments.sql
2019-09-13 18:13:38 -07:00

7 lines
182 B
SQL

DROP TRIGGER IF EXISTS commentsDeleteTrigger ON comments;
DROP FUNCTION IF EXISTS commentsDeleteTriggerFunction;
ALTER TABLE comments
ADD deleted BOOLEAN NOT NULL DEFAULT false;