This commit is contained in:
2025-06-08 20:55:08 +09:00
parent f7e0d17829
commit 7a75f79413
139 changed files with 10619 additions and 2340 deletions

View File

@@ -0,0 +1,8 @@
from sqlalchemy import Column, Integer, String
from database import Base
class Poll(Base):
__tablename__ = 'polls'
id = Column(Integer, primary_key=True)
option = Column(String, nullable=False)