SQLAlchemy inheritance not working SQLAlchemy inheritance not working flask flask

SQLAlchemy inheritance not working


Try adding

 __table_args__ = {'extend_existing': True} 

to your User class right under __tablename__=

cheers