mirror of
https://gitlab.com/commento/commento.git
synced 2026-06-17 09:55:27 -04:00
7 lines
182 B
SQL
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;
|