From 85f49fe3cb45d113abbccb12b08b2bfa35d33a60 Mon Sep 17 00:00:00 2001 From: Jeffrey Hardy Date: Fri, 13 Sep 2024 18:29:17 -0400 Subject: [PATCH] Remove speculative association and normalization --- app/models/tag.rb | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/models/tag.rb b/app/models/tag.rb index bc4012ab0..630371a89 100644 --- a/app/models/tag.rb +++ b/app/models/tag.rb @@ -1,8 +1,4 @@ class Tag < ApplicationRecord - # belongs_to :account - has_many :taggings, dependent: :destroy has_many :bubbles, through: :taggings - - normalizes :title, with: ->(value) { value.to_s } end