Spaces:
No application file
No application file
File size: 307 Bytes
8d6be10 | 1 2 3 4 5 6 7 8 9 10 | from sqlalchemy import Column, Integer, String, Boolean
from app.database import Base
class Item(Base):
__tablename__ = "items"
id = Column(Integer, primary_key=True, index=True)
title = Column(String, index=True)
description = Column(String)
completed = Column(Boolean, default=False) |