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
166 B
SQL
5 lines
166 B
SQL
DROP TRIGGER trg_edit_access ON edit_access;
|
|
CREATE TRIGGER trg_edit_access
|
|
BEFORE INSERT OR UPDATE ON edit_access
|
|
FOR EACH ROW EXECUTE PROCEDURE set_edit_generic();
|