10 lines
297 B
MySQL
10 lines
297 B
MySQL
|
-- A fix for the following error
|
||
|
-- moddatetime: cannot process INSERT events
|
||
|
--
|
||
|
-- We don't need moddatetime for INSERT events because we have column defaults set the time when the row is created.
|
||
|
|
||
|
|
||
|
DROP TRIGGER segment_created_at ON api.segments;
|
||
|
DROP TRIGGER stream_created_at ON api.streams;
|
||
|
|