ente/server/migrations/51_th_time_human.up.sql
2024-03-01 13:37:01 +05:30

10 lines
206 B
PL/PgSQL

create or replace function th(epochTimeinMircoSeconds bigint)
returns TIMESTAMP WITH TIME ZONE
language plpgsql
as
$$
begin
return to_timestamp(cast(epochTimeinMircoSeconds/1000000 as bigint));
end;
$$;