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

5 lines
135 B
Ruby

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