Supabase を使用して最初のテーブルを更新しようとすると、次のようなコードが使用されます。
await db.from("welcome").update({visit_count: newCount});
エラーが発生しました:
{
"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"
}