Update postgres_impl.py

Was missing , on the SQL Table create command
This commit is contained in:
widgit
2025-05-05 23:55:19 +10:00
committed by GitHub
parent 83abb1fbdf
commit e070c19414

View File

@@ -2297,8 +2297,8 @@ TABLES = {
doc_name VARCHAR(1024), doc_name VARCHAR(1024),
content TEXT, content TEXT,
meta JSONB, meta JSONB,
create_time TIMESTAMP(0) create_time TIMESTAMP(0),
update_time TIMESTAMP(0) update_time TIMESTAMP(0),
CONSTRAINT LIGHTRAG_DOC_FULL_PK PRIMARY KEY (workspace, id) CONSTRAINT LIGHTRAG_DOC_FULL_PK PRIMARY KEY (workspace, id)
)""" )"""
}, },