mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-23 05:24:18 +00:00
15 lines
446 B
Python
15 lines
446 B
Python
"""
|
|
This module defines the Notification database class.
|
|
"""
|
|
|
|
from ..base import ext
|
|
|
|
|
|
class Notification(ext.Model):
|
|
__tablename__ = "notification"
|
|
id = ext.Column(ext.Integer, primary_key=True)
|
|
ora = ext.Column(ext.DateTime, nullable=False)
|
|
# Foreign Key
|
|
alert_id = ext.Column(ext.Integer, ext.ForeignKey("alert.id"), nullable=False)
|
|
# Relationships
|
|
alert = ext.relationship("Alert", back_populates="notifications")
|