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: 84b142183f8a7c60a14c3c8c6a15315750299cf0 (plain)
1
2
3
4
5
class FixBuildTags < ActiveRecord::Migration
  def change
    execute("UPDATE taggings SET taggable_type='CommitStatus' WHERE taggable_type='Ci::Build'")
  end
end