make sure dev db timezone is utc

This commit is contained in:
keyan 2023-07-31 09:03:01 -05:00
parent d5aeea6dd3
commit 8581088bd4
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
-- prod is set to utc by default but dev might not be
CREATE OR REPLACE FUNCTION set_timezone_utc_currentdb()
RETURNS INTEGER
LANGUAGE plpgsql
AS $$
DECLARE
BEGIN
EXECUTE 'ALTER DATABASE '||current_database()||' SET TIMEZONE TO ''UTC''';
return 0;
EXCEPTION WHEN OTHERS THEN
return 0;
END;
$$;
SELECT set_timezone_utc_currentdb();