debian-mirror-gitlab/app/models/projects/project_topic.rb
2021-11-18 22:05:49 +05:30

8 lines
182 B
Ruby

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