⚠ 需要关注
并行Parallel
项目
标签
优先级
截止时间
本周打卡
状态分布
优先级分布
标签分布
习惯打卡情况
连接你自己的 Supabase 后,数据会在登录的设备间自动同步;不连接也能在本机离线使用。
supabase.com → Start your project,注册登录。create table if not exists planner_state ( user_id uuid references auth.users primary key, data jsonb, updated_at timestamptz default now() ); alter table planner_state enable row level security; create policy "own rows" on planner_state for all using (auth.uid() = user_id) with check (auth.uid() = user_id);
anon public 填到下面。