Skip to content
This repository has been archived by the owner on Apr 1, 2022. It is now read-only.

Latest commit

 

History

History
17 lines (14 loc) · 400 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 400 Bytes

Simple umzug cli wrapper

Thanks to https://github.com/xinix-technology/node-migrate/blob/master/cli.js

Enchantment

Support async config for nestjs to init

import migrate from '@bangbang93/migrate'

const app = await NestFactory.createApplicationContext(AppModule)
const opts: umzug.UmzugOptions = {
  migrations: {
    params: [app],
  }
}
await migrate(opts, process.argv)