Update date field with supabase's instance date
Hey! does it possible to update date field in table to be like
example:
is this valid? can't find any mention in the docs.
NOW()?example:
is this valid? can't find any mention in the docs.
NOW()const userId = ...
await supabase.from('table1').update({
my_updated_at: 'now()'
}).eq('user_id', userId);