fix: correct table name in Game model to 'games' to resolve OperationalError
This commit is contained in:
parent
30933ed2d5
commit
8345ac4e64
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user