├── .gitignore ├── .prettierrc ├── README.md ├── nodemon-debug.json ├── nodemon.json ├── package.json ├── src ├── app.controller.spec.ts ├── app.controller.ts ├── app.module.ts ├── app.service.ts ├── article.entity.ts ├── main.ts ├── migrations │ ├── 1558196824347-addingArticleMigration.ts │ ├── 1558197348260-addingRatingToArticleMigration.ts │ └── 1558203816137-article-migration.ts └── ormconfig.ts ├── test ├── app.e2e-spec.ts └── jest-e2e.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/README.md -------------------------------------------------------------------------------- /nodemon-debug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/nodemon-debug.json -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/package.json -------------------------------------------------------------------------------- /src/app.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/src/app.controller.spec.ts -------------------------------------------------------------------------------- /src/app.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/src/app.controller.ts -------------------------------------------------------------------------------- /src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/src/app.module.ts -------------------------------------------------------------------------------- /src/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/src/app.service.ts -------------------------------------------------------------------------------- /src/article.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/src/article.entity.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/migrations/1558196824347-addingArticleMigration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/src/migrations/1558196824347-addingArticleMigration.ts -------------------------------------------------------------------------------- /src/migrations/1558197348260-addingRatingToArticleMigration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/src/migrations/1558197348260-addingRatingToArticleMigration.ts -------------------------------------------------------------------------------- /src/migrations/1558203816137-article-migration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/src/migrations/1558203816137-article-migration.ts -------------------------------------------------------------------------------- /src/ormconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/src/ormconfig.ts -------------------------------------------------------------------------------- /test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/test/jest-e2e.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ambroiseRabier/typeorm-nestjs-migration-example/HEAD/tslint.json --------------------------------------------------------------------------------