fix #8131 - chinese translations
[Pman.Core] / mysql / core_notify_trigger_after_delete.sql
index 400a4e4..7d714f4 100644 (file)
@@ -9,7 +9,8 @@ DELIMITER $$
 CREATE TRIGGER core_notify_trigger_after_delete AFTER DELETE on core_notify
     FOR EACH ROW
         BEGIN
-            if old.sent is not null THEN 
+            -- I think we changed it so that sent is not null, deafult '0000....'
+            if old.sent is not null AND old.sent > '1500-01-01 00:00:00' THEN 
                 UPDATE `Error: Can not delete core_notify after it is sent` SET x = 1;
             END IF;
         END;