☑️
항목을 선택하세요
좌측 섹션을 펼치고 항목을 누르면 우측에 국가별 카드가 표시됩니다.
create table checklist_items ( key text primary key, text_value text default '', checked boolean default false, revisions jsonb default '[]', images jsonb default '[]', updated_at timestamptz default now() ); alter table checklist_items enable row level security; create policy "allow_all" on checklist_items for all using (true) with check (true);