2
votes
1answer
71 views

python: How can I test my database model using in-memory db?

I am developing a project in Flask and using SQLAlchemy as ORM I have a User model as class User(UserMixin, db.Model): __tablename__ = 'users' # noinspection PyShadowingBuiltins uuid = ...
1
vote
1answer
135 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
65 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
130 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
277 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 ...