This change introduces a Comment model in flask_app.py with an explicit comments table, primary key, and content field. It lays the groundwork for replacing the in-memory comments list with persistent storage, which is an important step toward making the app stateful across restarts. Practically, this sets up the database layer needed for real comment persistence and future CRUD work.

Added an initial SQLAlchemy Comment schema to start moving comment data into the database. - zhengqunkoo/pythonanywhere.com