Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160508221410_set_type_on_legacy_diff_notes.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6dd958ff4a07415edefd84d823b5341143d19809 (plain)
1
2
3
4
5
6
# rubocop:disable all
class SetTypeOnLegacyDiffNotes < ActiveRecord::Migration
  def change
    execute "UPDATE notes SET type = 'LegacyDiffNote' WHERE line_code IS NOT NULL"
  end
end