gitlab-org--gitlab-foss/db/migrate/20151019111703_fail_build_without_names.rb

10 lines
205 B
Ruby
Raw Normal View History

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