create table visions (id text primary key, payload jsonb, updated_at timestamptz default now());
create table learnings (id text primary key, payload jsonb, updated_at timestamptz default now());
alter table visions enable row level security;
alter table learnings enable row level security;
create policy "p" on visions for all using (true) with check (true);
create policy "p" on learnings for all using (true) with check (true);
alter publication supabase_realtime add table visions;
alter publication supabase_realtime add table learnings;