debian-mirror-gitlab/db/migrate/20151019111551_fix_build_tags.rb

10 lines
274 B
Ruby
Raw Normal View History

2015-10-24 18:46:33 +05:30
class FixBuildTags < ActiveRecord::Migration
2015-11-26 14:37:03 +05:30
def up
2015-10-24 18:46:33 +05:30
execute("UPDATE taggings SET taggable_type='CommitStatus' WHERE taggable_type='Ci::Build'")
end
2015-11-26 14:37:03 +05:30
def down
execute("UPDATE taggings SET taggable_type='Ci::Build' WHERE taggable_type='CommitStatus'")
end
2015-10-24 18:46:33 +05:30
end