Tagged Questions
0
votes
1answer
18 views
Alembic : How to add unique constraint to existing column
I have a table 'test' having a column 'Name' with no constraints. I need to Alter this column by giving it 'unique' constraint. How should I do it?
Should I use op.alter_column( '???' ) or ...
1
vote
1answer
62 views
Alembic: How to migrate custom type in a model?
My User model is
class User(UserMixin, db.Model):
__tablename__ = 'users'
# noinspection PyShadowingBuiltins
uuid = Column('uuid', GUID(), default=uuid.uuid4, primary_key=True,
...
1
vote
1answer
149 views
Alembic --autogenerate producing empty migration
I am trying to use Alembic for the first time and want to use --autogenerate feature described here
My project structure looks like
project/
configuration/
__init__.py
...
2
votes
3answers
70 views
Alembic: alembic revision says Import Error
I am trying to integrate my Flask project with Alembic
My application structure looks like
project/
configuration/
__init__.py
dev.py
...
0
votes
1answer
134 views
Detect changes to models.py using Alembic with Flask-SQLAlchemy in Flask Application
I'm trying to use Alembic with Flask-SQLAlchemy and Flask. Here is my application directory structure
/myapp
app.py
/module1
__init__.py
views.py
/module2
...
4
votes
1answer
286 views
How should I run alembic migrations on Heroku?
I'm trying to run a fairly simple Flask + SQLAlchemy site on Heroku, but I'm not sure how I should run my migrations to set up my DB. When I run heroku run alembic upgrade head, I get the following ...
2
votes
1answer
428 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 ...
