summaryrefslogtreecommitdiff
path: root/db/migrate/20160508221410_set_type_on_legacy_diff_notes.rb
blob: 567754d4f4ed0dbf3f00af52fb4dab5a7dc654e3 (plain)
1
2
3
4
5
6
# rubocop:disable all
class SetTypeOnLegacyDiffNotes < ActiveRecord::Migration[4.2]
  def change
    execute "UPDATE notes SET type = 'LegacyDiffNote' WHERE line_code IS NOT NULL"
  end
end