Files
fizzy/db/migrate/20241126232658_remove_body_from_comments.rb
T
2024-11-27 18:59:15 -06:00

6 lines
138 B
Ruby

class RemoveBodyFromComments < ActiveRecord::Migration[8.0]
def change
remove_column :comments, :body, :text, null: false
end
end