File tree 2 files changed +3
-3
lines changed
packages/server/src/database/migrations/postgres
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export class Init1693891895163 implements MigrationInterface {
27
27
CONSTRAINT "PK_3cc0d85193aade457d3077dd06b" PRIMARY KEY (id)
28
28
);`
29
29
)
30
- await queryRunner . query ( `CREATE INDEX IF NOT EXISTS "IDX_e574527322272fd838f4f0f3d3" ON chat_message USING btree (chatflowid);` )
30
+ await queryRunner . query ( `CREATE INDEX IF NOT EXISTS "IDX_e574527322272fd838f4f0f3d3" ON chat_message USING btree (" chatflowid" );` )
31
31
await queryRunner . query (
32
32
`CREATE TABLE IF NOT EXISTS credential (
33
33
id uuid NOT NULL DEFAULT uuid_generate_v4(),
Original file line number Diff line number Diff line change @@ -27,10 +27,10 @@ export class AddDocumentStore1711637331047 implements MigrationInterface {
27
27
);`
28
28
)
29
29
await queryRunner . query (
30
- `CREATE INDEX IF NOT EXISTS "IDX_e76bae1780b77e56aab1h2asd4" ON document_store_file_chunk USING btree (docId);`
30
+ `CREATE INDEX IF NOT EXISTS "IDX_e76bae1780b77e56aab1h2asd4" ON document_store_file_chunk USING btree (" docId" );`
31
31
)
32
32
await queryRunner . query (
33
- `CREATE INDEX IF NOT EXISTS "IDX_e213b811b01405a42309a6a410" ON document_store_file_chunk USING btree (storeId);`
33
+ `CREATE INDEX IF NOT EXISTS "IDX_e213b811b01405a42309a6a410" ON document_store_file_chunk USING btree (" storeId" );`
34
34
)
35
35
}
36
36
You can’t perform that action at this time.
0 commit comments