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

6 lines
164 B
Ruby

class FixBuildTags < ActiveRecord::Migration
def change
execute("UPDATE taggings SET taggable_type='CommitStatus' WHERE taggable_type='Ci::Build'")
end
end