العداد العام

اضغط - أضف صوتك

كل ضغطة تذهب إلى قاعدة بيانات مشتركة. لنرى كم عددنا؟

إجمالي الضغطات
جاري الاتصال بقاعدة البيانات...
01 اضغط على الزر الكبير
02 سيتم تحديث العداد للجميع
مطلوب إعداد قاعدة البيانات

قم بإنشاء جدول button_clicks في Supabase واسمح بالإضافة المجهولة:

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);