6 lines
125 B
Ruby
6 lines
125 B
Ruby
class RemoveBodyFromBubbles < ActiveRecord::Migration[8.0]
|
|
def change
|
|
remove_column :bubbles, :body, :string
|
|
end
|
|
end
|