8 lines
144 B
Ruby
8 lines
144 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Projects
|
|
class ProjectTopic < ApplicationRecord
|
|
belongs_to :project
|
|
belongs_to :topic
|
|
end
|
|
end
|