create table daily_tasks(
user_id text primary key,
data jsonb not null,
updated_at timestamptz default now()
);
alter table daily_tasks enable row level security;
create policy "pub" on daily_tasks for all using (true) with check (true);
create table daily_content(
user_id text primary key,
content jsonb not null,
updated_at timestamptz default now()
);
alter table daily_content enable row level security;
create policy "pub2" on daily_content for all using (true) with check (true);