Files
fizzy/app/models/category.rb
T
Jason Zimdars be2062f902 Simple flow for creating categories
- Also includes a dev-facing index for removing them (for now)
- Saves an interim bubble style for posterity
2024-07-31 16:22:36 -05:00

5 lines
134 B
Ruby

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