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

10 lines
279 B
Ruby
Raw Normal View History

class FixBuildTags < ActiveRecord::Migration[4.2]
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