mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-23 05:24:18 +00:00
013ce17aa8
All initial database classes are now properly implemented. Hurray!
14 lines
No EOL
454 B
Python
14 lines
No EOL
454 B
Python
"""
|
|
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
|
|
alert = Base.relationship("Alert", back_populates="notifications") |