共有カウンター

押して、あなたの投票を追加しよう

すべてのクリックが共有データベースに保存されます。何人いるか見てみましょう?

合計クリック数
データベースに接続中…
01 大きなボタンを押す
02 全員のカウントが更新されます
データベースの設定が必要です

Supabaseでbutton_clicksテーブルを作成し、匿名での追加を許可してください:

create table button_clicks (id bigint generated by default as identity primary key, created_at timestamptz default now());
alter table button_clicks enable row level security;
create policy "public insert" on button_clicks for insert to anon with check (true);
create policy "public read" on button_clicks for select to anon using (true);