12 lines
277 B
Python
12 lines
277 B
Python
from sqlalchemy import Column, Integer, String, Text
|
|
|
|
from app.db.base import Base
|
|
|
|
|
|
class Item(Base):
|
|
__tablename__ = "items"
|
|
|
|
id = Column(Integer, primary_key=True, index=True)
|
|
title = Column(String(100), index=True)
|
|
description = Column(Text, nullable=True)
|