Files
Automata/packages/cli/src/databases/migrations/postgresdb/1648740597343-LowerCaseUserEmail.ts
कारतोफ्फेलस्क्रिप्ट™ 82fe6383ef refactor(core): Delete boilerplate code across migrations (no-changelog) (#5254)
2023-05-05 11:28:59 +02:00

11 lines
314 B
TypeScript

import type { MigrationContext, IrreversibleMigration } from '@db/types';
export class LowerCaseUserEmail1648740597343 implements IrreversibleMigration {
async up({ queryRunner, tablePrefix }: MigrationContext) {
await queryRunner.query(`
UPDATE "${tablePrefix}user"
SET email = LOWER(email);
`);
}
}