diff --git a/game_collection/models.py b/game_collection/models.py index 5a4406d..a693407 100644 --- a/game_collection/models.py +++ b/game_collection/models.py @@ -3,6 +3,7 @@ from flask_sqlalchemy import SQLAlchemy db = SQLAlchemy() class Game(db.Model): + __tablename__ = 'games' # Ensure the table name is set to 'games' id = db.Column(db.Integer, primary_key=True) image = db.Column(db.String(255)) title = db.Column(db.String(100), nullable=False)