Farmbot-Web-App/db/migrate/20180413145332_retroactivel...

7 lines
165 B
Ruby

class RetroactivelySetDefaultVerbosity < ActiveRecord::Migration[5.1]
safety_assured
def change
Log.where(verbosity: nil).update_all(verbosity: 1)
end
end