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