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
MySQL
Raw Normal View History

2023-03-19 22:59:11 +01:00
CREATE OR REPLACE FUNCTION set_updated_timestamp()
RETURNS TRIGGER AS $$
BEGIN
NEW.updated_at = now();
RETURN NEW;
END;
$$ language 'plpgsql';