sql >> Database >  >> RDS >> Mysql

TypeORM - Hoe maak je een nieuwe tabel aan en voer je de migratie automatisch uit in productiemodus?

Voor mensen die migraties willen uitvoeren om te testen:NIET in een productieomgeving.

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

Uitvoeren met:

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

of

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


  1. Hibernate-codering van database volledig transparant voor toepassing

  2. django test-app-fout - Er is een fout opgetreden bij het maken van de testdatabase:toestemming geweigerd om database te maken

  3. MySQL-wachtwoord beschermen bij het ontwikkelen in Python?

  4. Vind ongeëvenaarde records