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

6 lines
125 B
Ruby

class RemoveBodyFromBubbles < ActiveRecord::Migration[8.0]
def change
remove_column :bubbles, :body, :string
end
end