21 lines
705 B
Python
21 lines
705 B
Python
from sqlalchemy.ext.declarative import declarative_base
|
|
from sqlalchemy import Column, Integer, Boolean, BigInteger, JSON
|
|
|
|
Base = declarative_base()
|
|
|
|
|
|
class Poll(Base):
|
|
__tablename__ = 'polls'
|
|
|
|
id = Column(Integer, primary_key=True)
|
|
channel_id = Column(BigInteger)
|
|
message_id = Column(BigInteger)
|
|
content = Column(JSON)
|
|
is_anonymous = Column(Boolean)
|
|
responses = Column(JSON, nullable=True)
|
|
|
|
def __repr__(self):
|
|
return "<Poll(id='%s', channel_id='%s', message_id='%s', poll='%s', " \
|
|
"is_anonymous='%s', responses='%s')>" % \
|
|
(self.id, self.channel_id, self.message_id, self.content,
|
|
self.is_anonymous, self.responses)
|