fix (backend): incorrect database index

ref: d30239b5e7
This commit is contained in:
naskya 2024-03-13 13:11:57 +09:00
parent f7a459ab97
commit cd0aef1166
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C

View file

@ -7,7 +7,7 @@ export class RemoveNativeUtilsMigration1705877093218
await queryRunner.query(`DROP TABLE IF EXISTS "reversi_game"`);
await queryRunner.query(`DROP TABLE IF EXISTS "reversi_matching"`);
await queryRunner.query(
`CREATE INDEX IF NOT EXISTS "IDX_note_url" ON "note" ("text")`,
`CREATE INDEX IF NOT EXISTS "IDX_note_url" ON "note" ("url")`,
);
await queryRunner.query(`DROP TABLE IF EXISTS "antenna_note"`);
await queryRunner.query(