We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca704fa commit a1d0ccaCopy full SHA for a1d0cca
migrations/mysql/00-init-db.sql
@@ -81,7 +81,7 @@ CREATE TABLE knowledges (
81
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
82
deleted_at TIMESTAMP NULL DEFAULT NULL,
83
processed_at TIMESTAMP,
84
- error_message TEXT,
+ error_message TEXT
85
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
86
87
CREATE INDEX idx_knowledges_tenant_id ON knowledges(tenant_id, knowledge_base_id);
@@ -150,4 +150,4 @@ CREATE TABLE chunks (
150
151
CREATE INDEX idx_chunks_tenant_knowledge ON chunks(tenant_id, knowledge_id);
152
CREATE INDEX idx_chunks_parent_id ON chunks(parent_chunk_id);
153
-CREATE INDEX idx_chunks_chunk_type ON chunks(chunk_type);
+CREATE INDEX idx_chunks_chunk_type ON chunks(chunk_type);
0 commit comments