initial commit

This commit is contained in:
2026-05-09 22:21:38 +03:30
commit b7f8704e98
15 changed files with 148 additions and 0 deletions

8
backend/models.py Normal file
View File

@@ -0,0 +1,8 @@
from sqlalchemy import Column, Integer, String
from database import Base
class Item(Base):
__tablename__ = "items"
id = Column(Integer, primary_key=True, index=True)
title = Column(String, nullable=False)