Mysql
 sql >> Datenbank >  >> RDS >> Mysql

TypeORM - Wie erstelle ich eine neue Tabelle und führe die Migration automatisch im Produktionsmodus aus?

Für Personen, die Migrationen zu Testzwecken ausführen möchten:NICHT in der Produktionsumgebung.

import {
  createConnection,
  ConnectionOptions,
  Connection,
} from 'typeorm';

import { YourEntity } from 'path/to/your/entity.ts';

const testConfig: ConnectionOptions = {
  type: 'mongodb',
  url: 'mongodb://localhost:27017',
  database: 'test',
  useUnifiedTopology: true,
  entities: [YourEntity],
  synchronize: true,
  migrations: ['migrations/*YourMigrations.ts'],
};

let connection: Connection;

connection = await createConnection({ ...testConfig });
await connection.synchronize(true);

await connection.runMigrations({
 transaction: 'all',
});

Ausführen mit:

node -r ts-node/register ./path/to/migrations.ts

oder

node ./path/to/compiled/migrations.js