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.
god-replacement-product-old/migrations/20230319163531_timestamp_function.up.sql

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';