DEV Community

Discussion on: What's the best way to manage migrations in a microservice architechure?

Collapse
 
sam_ferree profile image
Sam Ferree

Ah, I'm used to EntityFramework which stores it' "Last Migration" information in a table on the database, so I'm sure if that would be an issue.

Seems like a good enough reason to keep your migrations in their own repo to me.

There is also probably an argument that could be made for a monorepo for all your microservices.