mirror of
https://gitlab.com/commento/commento.git
synced 2025-04-28 06:30:28 -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;
|