Mysql
 sql >> Database >  >> RDS >> Mysql

TypeORM - Come creare una nuova tabella ed eseguire automaticamente la migrazione in modalità produzione?

Per le persone che desiderano eseguire migrazioni a scopo di test:NON nell'ambiente di produzione.

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',
});

Esegui usando:

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

o

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