Tagged Questions
0
votes
1answer
65 views
alembic: use subquery for update statement in migration
I'm using alembic to manage my database migrations. In my current migration I need also to populate a column based on a SELECT statement (basically copying a column from a different table).
With ...
1
vote
2answers
90 views
Should I keep DB migration scripts generated via alembic under version control
I am using SQLAlchemy and PostgreSQL on my live site. For database migrations, I am using alembic. I have some questions regarding the best strategy to do this .
Do I need to keep my DB migration ...
0
votes
0answers
25 views
Is it possible for database migration tools, such as alembic to handle case sensitivity or insensitivity across database engines [closed]
Or it is better to be handled in application development code?
Thanks and best regards,
2
votes
1answer
422 views
No changes detected in Alembic autogeneration of migrations with Flask-SQLAlchemy
I'm having trouble getting Alembic to autogenerate candidate migrations from changes to classes using db.Model (Flask-SQLAlchemy) instead of Base.
I've modified env.py to create my Flask app, import ...
1
vote
1answer
909 views
Auto Generating Migrations using alembic
In the tutorial:
http://alembic.readthedocs.org/en/latest/tutorial.html
I tested Auto Generating Migrations function by below command:
alembic revision --autogenerate -m "Added account table"
and ...