Files
fizzy/db/migrate/20241025224942_remove_bubble_reference_from_comments.rb
T
2024-10-27 11:57:33 -06:00

6 lines
174 B
Ruby

class RemoveBubbleReferenceFromComments < ActiveRecord::Migration[8.0]
def change
remove_column :comments, :bubble_id, :references, null: false, index: false
end
end