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

11 lines
296 B
Ruby

# 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