lifeoncruzcontrol / blog

Blog built with Angular, NestJS, and Postgres
0 stars 0 forks source link

Add database migration capability #12

Open lifeoncruzcontrol opened 3 days ago

lifeoncruzcontrol commented 3 days ago

New models/tables will need to be added to the database, and models/tables might also need to be updated. Migrations are needed so the database can be seamlessly updated or rollback accordingly.

From my preliminary research, NestJS uses TypeORM to handle migrations.

lifeoncruzcontrol commented 2 days ago

To accomplish this task: