1

I have multiple flask apps connected to the same database backend for high availability purposes. There is a problem when app instances try to migrate database concurrently using alembic! What's the best way to prevent it?

Robinho
  • 1,011
  • 2
  • 10
  • 17

1 Answers1

1

Alembic does not support simultaneous migration. Your best bet is to do it manually.

simanacci
  • 2,197
  • 3
  • 26
  • 35