mysql/core_notify_trigger_after_delete.sql
authorAlan Knowles <alan@roojs.com>
Wed, 24 Oct 2018 06:36:01 +0000 (14:36 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 24 Oct 2018 06:36:01 +0000 (14:36 +0800)
mysql/core_notify_trigger_after_delete.sql

index 59faadc..81de637 100644 (file)
@@ -9,6 +9,7 @@ DELIMITER $$
 CREATE TRIGGER core_notify_trigger_after_delete AFTER DELETE on core_notify
     FOR EACH ROW
         BEGIN
+            -- I think we changed it so that sent is not null, deafult '0000....'
             if old.sent is not null AND old.sent > '0001-01-01 00:00:00' THEN 
                 UPDATE `Error: Can not delete core_notify after it is sent` SET x = 1;
             END IF;