①
Supabase-Tabelle anlegen (einmalig)
Führe dieses SQL im SQL Editor deines Supabase-Projekts aus:
create table if not exists app_data (
key text primary key,
value jsonb,
updated_at timestamptz default now()
);
alter table app_data enable row level security;
create policy "Allow all" on app_data
for all using (true) with check (true);