Files
fizzy/db/migrate/20240919141018_remove_body_from_boosts.rb
T
2024-09-19 10:15:03 -04:00

6 lines
123 B
Ruby

class RemoveBodyFromBoosts < ActiveRecord::Migration[8.0]
def change
remove_column :boosts, :body, :string
end
end