From 013e94e4702a94301963679bc015fad942d8be5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Cutzach?= Date: Mon, 30 Sep 2024 12:02:06 +0200 Subject: [PATCH] chore: ADD migration for DB new Index logins__email --- .../migration/1727689195356-LoginsEmailIndex.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 app/gen-server/migration/1727689195356-LoginsEmailIndex.ts diff --git a/app/gen-server/migration/1727689195356-LoginsEmailIndex.ts b/app/gen-server/migration/1727689195356-LoginsEmailIndex.ts new file mode 100644 index 00000000..6861bb3d --- /dev/null +++ b/app/gen-server/migration/1727689195356-LoginsEmailIndex.ts @@ -0,0 +1,16 @@ +import {MigrationInterface, QueryRunner, TableIndex} from "typeorm"; + +export class LoginsEmailsIndex1727689195356 implements MigrationInterface { + + public async up(queryRunner: QueryRunner): Promise { + await queryRunner.createIndex("logins", new TableIndex({ + name: "logins__email", + columnNames: ["email"] + })); + } + + public async down(queryRunner: QueryRunner): Promise { + await queryRunner.dropIndex("logins", "logins__email"); + } +} +