D
D
Denis2019-09-03 21:38:34
Software Deployment
Denis, 2019-09-03 21:38:34

How to manage migrations in prod if features are released at different times?

Good evening.
Please share your tips on managing database migrations, if there is a business requirement, according to which the functionality can go into production at different times, the functionality can be interconnected, all business logic is stored in the procedures and functions of the database.
Currently migrations are updated via doctrine migration bundle

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
Ivan Shumov, 2019-09-03
@inoise

The only thing that will save you is:
- atomic changes (separate migrations, code for each feature separately)
- sequential deployment (first migrations, then code, etc.)
- get rid of procedures and functions in the database
- introduce a service or even microservice architecture, getting rid of the bondage
and better all of the above

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question