🚶日光浴CLUB
今月の活動記録
記録0
写真0
ペース0.0
@user
🐏

目次

@user

活動記録を書く

タップして写真を選ぶ
preview

設定

同期を使うには supabase.com で無料プロジェクトを作り、 SQL Editor で以下を実行してから URL と anon key を貼り付けてください。
create table diary (
  id text primary key,
  date text, weather text, body text, place 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);
設定後は自動で同期されます(最終更新が新しい方が優先)。
receipt