From 0b7435ab32b3271ae000894f6798cc087b3c058c Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sun, 9 Jun 2024 14:54:29 +0100 Subject: [PATCH] Drop dummy classes that are unneeded and don't work --- ...134916_add_notes_and_diary_comments_counter_caches.rb | 9 --------- 1 file changed, 9 deletions(-) diff --git a/db/migrate/20240605134916_add_notes_and_diary_comments_counter_caches.rb b/db/migrate/20240605134916_add_notes_and_diary_comments_counter_caches.rb index 6b30071bd1..d905215957 100644 --- a/db/migrate/20240605134916_add_notes_and_diary_comments_counter_caches.rb +++ b/db/migrate/20240605134916_add_notes_and_diary_comments_counter_caches.rb @@ -1,13 +1,4 @@ class AddNotesAndDiaryCommentsCounterCaches < ActiveRecord::Migration[7.1] - class DiaryComment < ApplicationRecord - end - - class NoteComment < ApplicationRecord - end - - class User < ApplicationRecord - end - def self.up add_column :users, :diary_comments_count, :integer, :default => 0 add_column :users, :note_comments_count, :integer, :default => 0