Miguel Grinberg
Miguel Grinberg
@tmtech90 you can log the user in just from the confirmation email, but that is insecure. That means that anybody that has the link can log in to the user's...
@tmtech90 Logging the user in right after registration is also not a practice I would recommend. Users are much more likely to forget their credentials if they are not asked...
Even though this can be considered a bug, changing `to_dict()` to invoke `clean()` may cause existing applications to break. Given that the workaround is fairly simple for now we'll keep...
Returning a file is not a great idea. The post should return image URLs, which I guess you can generate with `url_for()`. Then for development Flask serves these images, but...
Duplicate of #1587
@xmikew this really is a question that applies to Alembic, not to Flask-Migrate, which just implements the integration between Flask, Flask-SQLAlchemy and Alembic. Alembic does not natively support migrations for...
@xmikew I have made a small change to accept the `-x` argument in the `db` group instead of in the migrate and upgrade/downgrade commands. Please install the main branch of...
Fix is released. Please report back if there are any remaining problems.
I'm going to reiterate that Flask-Migrate does not generate migrations. You are using Alembic for your migrations. Flask-Migrate just makes Alembic easier to use with Flask. I'm closing, since there...
I don't consider the idea of multiple schemas a good API design practice, so I really have no direct experience (or interest) in implementing this. But marshmallow supports nesting schemas,...