Files
fizzy/app/models/category.rb
T
2024-09-04 14:03:19 -04:00

5 lines
134 B
Ruby

class Category < ApplicationRecord
has_many :categorizations, dependent: :destroy
has_many :splats, through: :categorizations
end