2. Paste and run this SQL:
create table diet_data (
id text primary key,
data jsonb not null,
created_at timestamptz default now()
);
alter table diet_data enable row level security;
create policy "allow all" on diet_data
for all using (true) with check (true);
3. Come back here and complete your profile below