Merge pull request #1524 from widgit/main
Update postgres_impl.py syntax to create tables section
This commit is contained in:
commit
ed9d2b9c59
1 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||||
)"""
|
)"""
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue