Files
fast_api_livetse/backend/app/db/models.py
Anahita-Mahmoudi b0ff339525 git add .
git commit -m "feat: improve wheel UI with gold pointer and center circle sync"
2026-05-30 14:20:20 +03:30

26 lines
391 B
Python

from sqlalchemy import Column
from sqlalchemy import Integer
from sqlalchemy import String
from app.db.session import Base
class Item(Base):
__tablename__ = "items"
id = Column(
Integer,
primary_key=True,
index=True
)
title = Column(
String,
nullable=False
)
value = Column(
Integer,
nullable=False
)