Go to Supabase → your project → SQL Editor → run:
create table couple_data (
id text primary key,
data jsonb not null,
created_at timestamptz default now()
);
alter table couple_data enable row level security;
create policy "allow all" on couple_data
for all using (true) with check (true);