summaryrefslogtreecommitdiff
path: root/app/models/projects/project_topic.rb
blob: 7021a48646a32706e0d5f9a2056519b3c9b78ddc (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

module Projects
  class ProjectTopic < ApplicationRecord
    belongs_to :project
    belongs_to :topic, counter_cache: :total_projects_count
  end
end