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;
|