summaryrefslogtreecommitdiff
path: root/db/migrate/20160508221410_set_type_on_legacy_diff_notes.rb
blob: c3f23d89d5a127a48363479d1e9c35175f726b2f (plain)
1
2
3
4
5
class SetTypeOnLegacyDiffNotes < ActiveRecord::Migration
  def change
    execute "UPDATE notes SET type = 'LegacyDiffNote' WHERE line_code IS NOT NULL"
  end
end