This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/app/models/p_serial_num_value.rb
2021-09-29 17:42:59 +02:00

6 lines
229 B
Ruby

class PSerialNumValue < ApplicationRecord
# USELESS MODEL : VALUES A ON p_article_serial_nums TABLE
has_many :p_article_serial_nums, inverse_of: :p_serial_num_value
has_many :p_articles, through: :p_article_serial_nums
end