be2062f902
- Also includes a dev-facing index for removing them (for now) - Saves an interim bubble style for posterity
5 lines
134 B
Ruby
5 lines
134 B
Ruby
class Category < ApplicationRecord
|
|
has_many :categorizations
|
|
has_many :splats, through: :categorizations, dependent: :destroy
|
|
end
|