forked from fixin.me/fixin.me
8 lines
148 B
Ruby
8 lines
148 B
Ruby
class Readout < ApplicationRecord
|
|
ATTRIBUTES = [:quantity_id, :value, :unit_id]
|
|
|
|
belongs_to :user
|
|
belongs_to :quantity
|
|
belongs_to :unit
|
|
end
|