create table diary ( id text primary key, date text, weather text, body text, place text, mapUrl text, image text, created_at bigint, updated_at bigint); alter table diary enable row level security; create policy "anon" on diary for all using (true) with check (true);設定後は自動で同期されます(最終更新が新しい方が優先)。