Welcome to mirror list, hosted at ThFree Co, Russian Federation.

timeline_event_tag_link.rb « incident_management « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 912339717a848fb8508688cd5ae3e22a00680b24 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module IncidentManagement
  class TimelineEventTagLink < ApplicationRecord
    self.table_name = 'incident_management_timeline_event_tag_links'

    belongs_to :timeline_event_tag, class_name: 'IncidentManagement::TimelineEventTag'

    belongs_to :timeline_event, class_name: 'IncidentManagement::TimelineEvent'
  end
end