Final push: Correct directory structure and content

This commit is contained in:
Agent
2026-05-17 10:04:27 +00:00
commit 203518ac66
5 changed files with 40 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from sqlalchemy import Column, Integer, String
from database import Base
class Note(Base):
__tablename__ = "notes"
id = Column(Integer, primary_key=True, index=True)
content = Column(String)