Files
fizzy/app/models/tag.rb
T
2024-09-13 19:16:18 -04:00

5 lines
116 B
Ruby

class Tag < ApplicationRecord
has_many :taggings, dependent: :destroy
has_many :bubbles, through: :taggings
end