Skip to content

Commit

Permalink
Removed reference to emergency session ID
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvsnetworking committed Jan 12, 2024
1 parent 612655e commit e37e323
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions lib/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,11 +259,6 @@ class SERVING_APN_OPERATION_LOG(OPERATION_LOG_BASE):
serving_apn = relationship("SERVING_APN", back_populates="operation_logs")
serving_apn_id = Column(Integer, ForeignKey('serving_apn.serving_apn_id'))

class EMERGENCY_SESSION_OPERATION_LOG(OPERATION_LOG_BASE):
__mapper_args__ = {'polymorphic_identity': 'emergency_session'}
serving_apn = relationship("EMERGENCY_SESSION", back_populates="operation_logs")
emergency_session_id = Column(Integer, ForeignKey('emergency_session.emergency_session_id'))

class AUC_OPERATION_LOG(OPERATION_LOG_BASE):
__mapper_args__ = {'polymorphic_identity': 'auc'}
auc = relationship("AUC", back_populates="operation_logs")
Expand Down

0 comments on commit e37e323

Please sign in to comment.