chore: init monorepo snapshot

This commit is contained in:
liaibo
2025-11-23 10:55:04 +08:00
commit c70ff52869
941 changed files with 246586 additions and 0 deletions
@@ -0,0 +1,29 @@
alter table public.documents
add column if not exists wide_layout boolean not null default false;
alter table public.documents
add column if not exists use_small_text boolean not null default false;
alter table public.documents
add column if not exists show_heading_numbers boolean not null default true;
alter table public.documents
add column if not exists show_toc boolean not null default false;
alter table public.documents
add column if not exists show_structure boolean not null default false;
alter table public.documents
add column if not exists protect_editing boolean not null default false;
alter table public.documents
add column if not exists show_word_count boolean not null default true;
alter table public.documents
add column if not exists word_count integer not null default 0;
alter table public.documents
add column if not exists character_count integer not null default 0;
alter table public.documents
add column if not exists block_count integer not null default 0;