2021-04-21 16:47:18 +00:00
|
|
|
"""
|
|
|
|
This module defines the Condition database class.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from ..base import Base
|
|
|
|
from .Enums import ConditionType
|
|
|
|
|
|
|
|
|
|
|
|
class Condition(Base.Model):
|
|
|
|
__tablename__ = "condition"
|
|
|
|
id = Base.Column(Base.Integer, primary_key=True)
|
|
|
|
type = Base.Column(Base.Enum(ConditionType), nullable=False)
|
|
|
|
content = Base.Column(Base.String, nullable=False)
|
|
|
|
# Relationships
|
|
|
|
used = Base.relationship("Uses", back_populates="condition")
|
|
|
|
tweets = Base.relationship("Contains", back_populates="condition")
|
|
|
|
operations = Base.relationship("BoolOperation", back_populates="condition")
|
2021-04-29 02:35:51 +00:00
|
|
|
|
|
|
|
def to_json(self):
|
|
|
|
return {
|
|
|
|
"id": self.id,
|
|
|
|
"type": self.type,
|
|
|
|
"content": self.content,
|
|
|
|
}
|