Remove events_insert_trigger
parent
86f912d99b
commit
3bb3dabd0d
|
|
@ -168,6 +168,7 @@ DROP TRIGGER IF EXISTS event_insert_trigger//
|
|||
/* The assumption is that when an Event is inserted, it has no size yet, so don't bother updating the DiskSpace, just the count.
|
||||
* The DiskSpace will get update in the Event Update Trigger
|
||||
*/
|
||||
/*
|
||||
CREATE TRIGGER event_insert_trigger AFTER INSERT ON Events
|
||||
FOR EACH ROW
|
||||
BEGIN
|
||||
|
|
@ -185,6 +186,7 @@ FOR EACH ROW
|
|||
TotalEvents = COALESCE(TotalEvents,0)+1;
|
||||
END;
|
||||
//
|
||||
*/
|
||||
|
||||
DROP TRIGGER IF EXISTS event_delete_trigger//
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue