Remove events_insert_trigger

less_triggers
Isaac Connor 2026-01-23 11:50:01 -05:00
parent 86f912d99b
commit 3bb3dabd0d
1 changed files with 2 additions and 0 deletions

View File

@ -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//