6 lines
120 B
Ruby
6 lines
120 B
Ruby
# frozen_string_literal: true
|
|
|
|
class IssueMilestone < ApplicationRecord
|
|
belongs_to :milestone
|
|
belongs_to :issue
|
|
end
|