
* Previously, some models had "duplicated" `belongs_to` associations, which were now removed (and replaced by the `include Creation`).
8 lines
169 B
Ruby
8 lines
169 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Subscription < ApplicationRecord
|
|
include Creation
|
|
belongs_to :request_for_comment
|
|
belongs_to :study_group, optional: true
|
|
end
|