1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/nest_backend/database/tables/Notification.py

23 lines
623 B
Python
Raw Normal View History

"""
This module defines the Notification database class.
"""
2021-05-07 17:46:14 +00:00
from ..base import ext
2021-05-07 17:46:14 +00:00
class Notification(ext.Model):
__tablename__ = "notification"
2021-05-07 17:46:14 +00:00
id = ext.Column(ext.Integer, primary_key=True)
ora = ext.Column(ext.DateTime, nullable=False)
# Foreign Key
2021-05-11 16:45:40 +00:00
alert_id = ext.Column(ext.Integer, ext.ForeignKey("alert.id", ondelete="CASCADE"), nullable=False)
# Relationships
2021-05-07 17:46:14 +00:00
alert = ext.relationship("Alert", back_populates="notifications")
2021-05-07 17:15:14 +00:00
def to_json(self):
return {
"id": self.id,
"ora": self.ora.isoformat(),
"alert_id": self.alert_id
2021-05-07 17:51:03 +00:00
}