5 lines
135 B
Ruby
5 lines
135 B
Ruby
class Category < ApplicationRecord
|
|
has_many :categorizations, dependent: :destroy
|
|
has_many :bubbles, through: :categorizations
|
|
end
|