In sqlalchemy (0.8.2), drop_all()and create_all()both have a parameter tables, which can be a list of table objects to be deleted or added.
In flask-sqlalchemy (1.0), these methods do not have this parameter.
How can I drop / create a subset of database tables using flask alchemy?
source
share