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