MikaList/game_collection/models.py

21 lines
889 B
Python

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)
date = db.Column(db.String(10), nullable=False) # Ensure date is not nullable
buyer = db.Column(db.String(100))
owned = db.Column(db.Boolean, nullable=False)
class User(db.Model):
__tablename__ = 'users' # Ensure the table name is set to 'users'
id = db.Column(db.Integer, primary_key=True)
username = db.Column(db.String(100), nullable=False, unique=True)
password = db.Column(db.String(100), nullable=False)
role = db.Column(db.String(10), nullable=False) # 'user' or 'admin'
last_login = db.Column(db.String(20), nullable=True) # Last login timestamp