Join Discord
Powered by
when using upsert on a supabase row, can onConflic...
# javascript
l
larryM
11/03/2021, 3:24 PM
when using upsert on a supabase row, can onConflict take an array of values, in case you have multiple columns conflicting?
s
Steve
11/03/2021, 4:33 PM
You can use commas to specify multiple columns, like
onConflict: 'col1,col2'
.
Previous
Next