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

20151019111551_fix_build_tags.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c05acfc1904171856981db48ffee0d699625543 (plain)
1
2
3
4
5
6
7
8
9
10
# rubocop:disable all
class FixBuildTags < ActiveRecord::Migration
  def up
    execute("UPDATE taggings SET taggable_type='CommitStatus' WHERE taggable_type='Ci::Build'")
  end

  def down
    execute("UPDATE taggings SET taggable_type='Ci::Build' WHERE taggable_type='CommitStatus'")
  end
end