style: format en linting

This commit is contained in:
laurejablonski 2025-05-13 09:55:41 +02:00
parent 4cb1469479
commit e2bf413f35
22 changed files with 41 additions and 71 deletions

View file

@ -17,7 +17,7 @@ export async function initORM(testingMode = false): Promise<MikroORM<IDatabaseDr
// Update the database scheme if necessary and enabled.
if (getEnvVar(envVars.DbUpdate)) {
logger.info("MikroORM: Updating database schema");
logger.info('MikroORM: Updating database schema');
await orm.schema.updateSchema();
} else {
const diff = await orm.schema.getUpdateSchemaSQL();