Re: Running Migrations Simulataneously

2016-04-27 Thread Mike Bayer
On Wednesday, April 27, 2016, Amit Saha wrote: > On Wed, Apr 27, 2016 at 11:31 PM, Mike Bayer > wrote: > > Yes, you can implement that inside your env.py if you wanted.All the > > other processes would wait and once inside the lock they all need to > > re-check the version.Not something

Re: Running Migrations Simulataneously

2016-04-27 Thread Amit Saha
On Wed, Apr 27, 2016 at 11:31 PM, Mike Bayer wrote: > Yes, you can implement that inside your env.py if you wanted.All the > other processes would wait and once inside the lock they all need to > re-check the version.Not something alembic would include, though. Have you thought about doin

Re: Running Migrations Simulataneously

2016-04-27 Thread Mike Bayer
Yes, you can implement that inside your env.py if you wanted.All the other processes would wait and once inside the lock they all need to re-check the version.Not something alembic would include, though. On Tuesday, April 26, 2016, Amit Saha wrote: > On Wed, Apr 27, 2016 at 12:37 AM, Mik