debian-mirror-gitlab/db/migrate/20160508221410_set_type_on_legacy_diff_notes.rb
2016-06-16 23:09:34 +05:30

7 lines
185 B
Ruby

# rubocop:disable all
class SetTypeOnLegacyDiffNotes < ActiveRecord::Migration
def change
execute "UPDATE notes SET type = 'LegacyDiffNote' WHERE line_code IS NOT NULL"
end
end