debian-mirror-gitlab/db/migrate/20160508221410_set_type_on_legacy_diff_notes.rb

7 lines
190 B
Ruby
Raw Normal View History

# rubocop:disable all
2019-02-15 15:39:39 +05:30
class SetTypeOnLegacyDiffNotes < ActiveRecord::Migration[4.2]
2016-06-02 11:05:42 +05:30
def change
execute "UPDATE notes SET type = 'LegacyDiffNote' WHERE line_code IS NOT NULL"
end
end