mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-23 05:24:18 +00:00
5df9053e91
Now all the tests should pass.
24 lines
757 B
Python
24 lines
757 B
Python
"""
|
|
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", cascade="all, delete")
|
|
tweets = Base.relationship("Contains", back_populates="condition")
|
|
operations = Base.relationship("BoolOperation", back_populates="condition")
|
|
|
|
def to_json(self):
|
|
return {
|
|
"id": self.id,
|
|
"type": self.type,
|
|
"content": self.content,
|
|
}
|