I'm upgrading the required packages for my Flask app and have run into a problem. I bumped up from Flask 1.1 to 2.2 and am now trying to bump Flask-SQLAlchemy up from 2.5 to 3.x. I upgraded with pip and the app starts, but when I request a page, SQLAlchemy complains that it can't find any of my tables.
I'm using SQLite locally and I can see the tables using the SQLite command line tool, so I know they exist / didn't get clobbered somehow. I assume this is just a communication issue.