Skip to content

Commit

Permalink
Drop incident_history.caused_by_incident_history_id
Browse files Browse the repository at this point in the history
  • Loading branch information
oxzi authored and nilmerg committed Apr 16, 2024
1 parent a879c50 commit ef7883f
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions library/Notifications/Model/IncidentHistory.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public function getColumns()
'schedule_id',
'contactgroup_id',
'channel_id',
'caused_by_incident_history_id',
'new_severity',
'old_severity',
'new_recipient_role',
Expand All @@ -46,21 +45,20 @@ public function getColumns()
public function getColumnDefinitions()
{
return [
'incident_id' => t('Incident Id'),
'event_id' => t('Event Id'),
'rule_escalation_id' => t('Rule Escalation Id'),
'time' => t('Time'),
'type' => t('Type'),
'new_severity' => t('New Severity'),
'old_severity' => t('Old Severity'),
'contact_id' => t('Contact Id'),
'schedule_id' => t('Schedule Id'),
'contactgroup_id' => t('Contact Group Id'),
'caused_by_incident_history_id' => t('Caused By Incident History Id'),
'channel_id' => t('Channel ID'),
'new_recipient_role' => t('New Recipient Role'),
'old_recipient_role' => t('Old Recipient Role'),
'message' => t('Message')
'incident_id' => t('Incident Id'),
'event_id' => t('Event Id'),
'rule_escalation_id' => t('Rule Escalation Id'),
'time' => t('Time'),
'type' => t('Type'),
'new_severity' => t('New Severity'),
'old_severity' => t('Old Severity'),
'contact_id' => t('Contact Id'),
'schedule_id' => t('Schedule Id'),
'contactgroup_id' => t('Contact Group Id'),
'channel_id' => t('Channel ID'),
'new_recipient_role' => t('New Recipient Role'),
'old_recipient_role' => t('Old Recipient Role'),
'message' => t('Message')
];
}

Expand Down

0 comments on commit ef7883f

Please sign in to comment.