mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-23 05:24:18 +00:00
19 lines
No EOL
765 B
Python
19 lines
No EOL
765 B
Python
"""
|
|
This module defines the Alert database class.
|
|
"""
|
|
|
|
from ..base import ext
|
|
|
|
|
|
class Alert(ext.Model):
|
|
__tablename__ = "alert"
|
|
id = ext.Column(ext.Integer, primary_key=True)
|
|
name = ext.Column(ext.String, nullable=False)
|
|
limit = ext.Column(ext.Integer, nullable=False)
|
|
window_size = ext.Column(ext.Integer, nullable=False)
|
|
# Foreign Keys
|
|
repository_id = ext.Column(ext.Integer, ext.ForeignKey("repository.id", ondelete="CASCADE"), nullable=False)
|
|
# Relationships
|
|
repository = ext.relationship("Repository", back_populates="alerts")
|
|
notifications = ext.relationship("Notification", back_populates="alert", cascade="all, delete")
|
|
operations = ext.relationship("BoolOperation", back_populates="alert", cascade="all, delete") |