Files
BOTKlining/models/poll.py
2025-06-08 20:55:08 +09:00

9 lines
216 B
Python

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)