dwang733/Berkeley-Student-Food-Collective

View on GitHub
app/models/packaging.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Packaging < Tag
  validates :name, presence: true, uniqueness: true

  has_many :product_packagings
  has_many :products, through: :product_packagings
end