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

issue_milestone.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: da030077d8718ec11a727bc575004f6d46fef5c4 (plain)
1
2
3
4
5
6
# frozen_string_literal: true

class IssueMilestone < ApplicationRecord
  belongs_to :milestone
  belongs_to :issue
end