5 lines
165 B
SQL
5 lines
165 B
SQL
alter table public.documents
|
|
add column if not exists rag_settings jsonb;
|
|
|
|
comment on column public.documents.rag_settings is '自定义 LightRAG 参数配置';
|