price-builder-backend/models/models.py

13 lines
346 B
Python
Raw Permalink Normal View History

2024-10-08 22:03:02 +04:00
from sqlalchemy import Column, Integer, String, Float
from database import Base
2024-10-08 22:03:02 +04:00
class Laptop(Base):
__tablename__ = "laptops"
id = Column(Integer, primary_key=True, index=True)
2024-10-13 16:53:07 +04:00
processor = Column(String, index=True)
2024-10-08 22:03:02 +04:00
ram = Column(Integer)
2024-10-13 16:53:07 +04:00
os = Column(String, index=True)
2024-10-08 22:03:02 +04:00
ssd = Column(Integer)
display = Column(Float)