Files
fizzy/db/migrate/20250412084635_drop_card_comments_count.rb
T
David Heinemeier Hansson fb733b9a60 No more tracking commenting as an activity for sorting
We are doing away with all the automated activity scoring, but for now
lets just get rid of it for comments.
2025-04-12 10:50:25 +02:00

6 lines
124 B
Ruby

class DropCardCommentsCount < ActiveRecord::Migration[8.1]
def change
remove_column :cards, :comments_count
end
end