Also remove all inserts from the table declaration and add them in a separate file instead Add add/remove css to element for the element js declarations
5 lines
154 B
SQL
5 lines
154 B
SQL
DROP TRIGGER trg_edit_log ON edit_log;
|
|
CREATE TRIGGER trg_edit_log
|
|
BEFORE INSERT OR UPDATE ON edit_log
|
|
FOR EACH ROW EXECUTE PROCEDURE set_edit_generic();
|