summaryrefslogtreecommitdiff
path: root/db/migrate/20151019111551_fix_build_tags.rb
blob: 299a24b0a7c5a75ce171f4cd5bf5765ee0336ac2 (plain)
1
2
3
4
5
6
7
8
9
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