default
.rst
Tables
(current)
Columns
Constraints
Relationships
Orphan Tables
Anomalies
Routines
update_if_changed()
Parameters
Name
Type
Mode
IN
Definition
begin if new is distinct from old then -- new.updated_at := now(); -- once we start updating data in the admin app we will need to handle this -- new.updated_by := current_user; -- will need to be changed to a session user when auth is implemented return new; else return null; end if; end;