Remove events_insert_trigger

This commit is contained in:
Isaac Connor
2026-01-23 11:50:01 -05:00
parent 852f5c51f1
commit d64c5fa2c8

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