gitlab-org--gitlab-foss/db/migrate/20151019111703_fail_build_w...

10 lines
205 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-10-19 11:37:20 +00:00
class FailBuildWithoutNames < ActiveRecord::Migration
2015-11-05 14:41:03 +00:00
def up
2015-10-19 11:37:20 +00:00
execute("UPDATE ci_builds SET status='failed' WHERE name IS NULL AND status='pending'")
end
2015-11-05 14:41:03 +00:00
def down
end
2015-10-19 11:37:20 +00:00
end