How to create a single table using SqlAlchemy declarative_base
from app import db
from models import User
User.__table__.create(db.engine)
User.__table__.drop(db.engine)
You can create/drop individual tables:
User.__table__.drop(engine)
User.__table__.create(engine)