gitlab-org--gitlab-foss/db/migrate/20151019111551_fix_build_ta...

11 lines
296 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-10-19 11:37:20 +00:00
class FixBuildTags < ActiveRecord::Migration
2015-11-05 14:41:03 +00:00
def up
2015-10-19 11:37:20 +00:00
execute("UPDATE taggings SET taggable_type='CommitStatus' WHERE taggable_type='Ci::Build'")
end
2015-11-05 14:41:03 +00:00
def down
execute("UPDATE taggings SET taggable_type='Ci::Build' WHERE taggable_type='CommitStatus'")
end
2015-10-19 11:37:20 +00:00
end