2021-04-21 16:47:18 +00:00
|
|
|
"""
|
|
|
|
This module defines the Notification database class.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from ..base import Base
|
|
|
|
|
|
|
|
class Notification(Base.Model):
|
|
|
|
__tablename__ = "notification"
|
|
|
|
id = Base.Column(Base.Integer, primary_key=True)
|
|
|
|
ora = Base.Column(Base.DateTime, nullable=False)
|
|
|
|
# Foreign Key
|
|
|
|
alert_id = Base.Column(Base.Integer, Base.ForeignKey("alert.id"), nullable=False)
|
|
|
|
# Relationships
|
2021-05-07 17:15:14 +00:00
|
|
|
alert = Base.relationship("Alert", back_populates="notifications")
|
|
|
|
|
|
|
|
def to_json(self):
|
|
|
|
return {
|
|
|
|
"id": self.id,
|
|
|
|
"ora": self.ora.isoformat(),
|
|
|
|
"alert_id": self.alert_id
|
|
|
|
}
|