Fix linting
Browse files
lightrag/kg/postgres_impl.py
CHANGED
@@ -226,7 +226,9 @@ class PostgreSQLDB:
|
|
226 |
return
|
227 |
|
228 |
# 4. Perform the migration
|
229 |
-
logger.info(
|
|
|
|
|
230 |
migration_sql = """
|
231 |
INSERT INTO LIGHTRAG_VDB_CHUNKS (
|
232 |
id, workspace, full_doc_id, chunk_order_index, tokens, content,
|
|
|
226 |
return
|
227 |
|
228 |
# 4. Perform the migration
|
229 |
+
logger.info(
|
230 |
+
"Starting data migration from LIGHTRAG_DOC_CHUNKS to LIGHTRAG_VDB_CHUNKS..."
|
231 |
+
)
|
232 |
migration_sql = """
|
233 |
INSERT INTO LIGHTRAG_VDB_CHUNKS (
|
234 |
id, workspace, full_doc_id, chunk_order_index, tokens, content,
|