NestJS Example repository for Postgres TypeORM integration with migrations
$ npm install
# development
$ npm run start
# watch mode
$ npm run start:dev
# production mode
$ npm run start:prod
# unit tests
$ npm run test
# Create a migration
$ npm run migration:create --name=foo
# Generate a migration from schema changes
$ npm run migration:generate --name=bar
# Run migrations and checks for schema changes
$ npm run migration:run
# Revert migrations
$ npm run migration:revert