summaryrefslogtreecommitdiff
path: root/app/models/recommendation.rb
blob: 8bcbcd8e46a64fe775fefc04bed208174efc5571 (plain)
1
2
3
4
5
6
7
8
9
class Recommendation < ApplicationRecord
  attribute :duration, :integer
  attribute :sets, :integer
  attribute :repetitions, :integer
  attribute :duration, :integer
  belongs_to :exercise
  belongs_to :routine
  delegate :name, to: :exercise
end