Files
fizzy/db/migrate/20250412162339_remove_boosts_count_from_cards.rb
T
David Heinemeier Hansson 760cbb6c99 Drop boosts
Killed by design.
2025-04-12 18:52:54 +02:00

6 lines
127 B
Ruby

class RemoveBoostsCountFromCards < ActiveRecord::Migration[8.1]
def change
remove_column :cards, :boosts_count
end
end