I want to insert current timestamp without timezone to Supabase.
I know I can set default value of the timestamp column to
NOW()
but there can be some delay in the timing and I need it precise.I have tried
Date.now()
but got the error:date/time field value out of range
How can this be done?