When trying to my first table update using Supabase, with code like:
await db.from("welcome").update({visit_count: newCount});
Got error:
{
"hint":"To enable updating the table, set REPLICA IDENTITY using ALTER TABLE.",
"details":null,"code":"55000",
"message":"cannot update table \"welcome\" because it does not have a replica identity and publishes updates"
}