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

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

module Projects
  class ProjectTopic < ApplicationRecord
    belongs_to :project
    belongs_to :topic
  end
end