This repository has been archived on 2023-10-11. You can view files and clone it, but cannot push or open issues or pull requests.
Files
god-replacement-product-old/migrations/20230319163531_timestamp_function.up.sql
2023-03-19 22:59:11 +01:00

7 lines
151 B
PL/PgSQL

CREATE OR REPLACE FUNCTION set_updated_timestamp()
RETURNS TRIGGER AS $$
BEGIN
NEW.updated_at = now();
RETURN NEW;
END;
$$ language 'plpgsql';