ente/server/migrations/33_change_update_at_column_trigger.down.sql

10 lines
188 B
MySQL
Raw Normal View History

2024-03-01 08:07:01 +00:00
create or replace function trigger_updated_at_microseconds_column() returns trigger
language plpgsql
as
$$
BEGIN
NEW.updated_at = now_utc_micro_seconds();
RETURN NEW;
END;
$$;