This commit is contained in:
iamBadgers
2026-04-26 16:38:53 -07:00
parent b95fd394df
commit 41158cdd1c
4 changed files with 29 additions and 5 deletions

12
src/user_model.py Normal file
View File

@@ -0,0 +1,12 @@
from main import db
class User(db.Model):
__tablename__ = "users"
user_id = db.Column(db.Integer, primary_key=True)
password_hash = db.Column(db.Text)
user_name = db.Column(db.Text, unique=True)