create table tasks (
id uuid default gen_random_uuid() primary key,
title text not null,
description text,
priority text default 'M',
due_date text,
status text default 'queue',
created_at timestamptz default now()
);
create policy "Allow access" on tasks
for all using (true) with check (true);