项目进度看板
点文字可改 · 拖左侧把手调状态
数据存本机
同步设置
选状态
添加卡片
导出文本
导入文本
清空全部
纯文本内容
复制
关闭
多端同步设置
填 Supabase 信息后,手机和电脑打开同一个链接即可自动同步。两项留空则只存在本机(本页已内置 23 条现有数据)。
项目 URL
匿名密钥 anon key
第一次使用?点开复制建表语句
create table if not exists public.kanban_cards ( id text primary key, pname text default '', progress text default '', status text default '在做', sort int default 0, ts bigint default 0, del int default 0 ); alter table public.kanban_cards enable row level security; drop policy if exists anon_rw on public.kanban_cards; create policy anon_rw on public.kanban_cards for all to anon using (true) with check (true); grant usage on schema public to anon, authenticated; grant select, insert, update, delete on public.kanban_cards to anon, authenticated; notify pgrst, 'reload schema';
从旧看板导入
一键自检
关闭同步
保存