79466442

Date: 2025-02-25 11:48:09
Score: 1.5
Natty:
Report link

How about making it reversible?

class RemoveCountryFromSampleApps < ActiveRecord::Migration[8.0]
  def up
    remove_column :sample_apps, :country
  end

  def down
    add_column :sample_apps, :country, :string
  end
end
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Starts with a question (0.5): How
  • High reputation (-1):
Posted by: Lane