Files
fizzy/app/models/tag.rb
T
2024-09-05 21:29:05 -05:00

9 lines
194 B
Ruby

class Tag < ApplicationRecord
# belongs_to :account
has_many :taggings, dependent: :destroy
has_many :bubbles, through: :taggings
normalizes :title, with: ->(value) { value.to_s }
end