Miguel Grinberg

Results 485 comments of Miguel Grinberg

Are you running the Elasticsearch service?

@SamwayneKE you have to install it and start it. Are you reading the tutorial?

The `catch_errors` decorator suppresses the stack trace, but you can see in the code that it writes the error message to the log. I suspect your logging configuration is incorrect,...

@emilija-omnisend Are you sure you have the latest alembic.ini in your repository? Because this is a well known issue that was fixed a while ago. Make sure you have `flask_migrate`...

This might be a bug in alembic. Flask-Migrate does not generate migrations, it is just a wrapper for alembic.

You are confusing the role of Flask-Migrate and Alembic. The env.py file is provided by Flask-Migrate, and it just configures everything for Alembic. I don't understand if the problem continues...

I'm not aware of any incompatibilities, and I don't see this error here. Can you share the output of `pip freeze`? I wonder if you are using a very old...

Are you sure you don't have an invalid or outdated alembic_versions table in your database? I just don't see this error here, not sure what it might be, but there...

This is really between Alembic and SQLite. The latest version of Alembic is able to do some of these unsupported migrations by moving the data to a new table, so...

@nMustaki there is absolutely nothing in this project that performs migrations. I just facilitate the use of Alembic. Any migration improvements you make should go directly into Alembic.