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"); + } +} +