gitlab-org--gitlab-foss/db/migrate/20151019111703_fail_build_without_names.rb
2018-07-25 17:47:12 +08:00

8 lines
183 B
Ruby

class FailBuildWithoutNames < ActiveRecord::Migration
def up
execute("UPDATE ci_builds SET status='failed' WHERE name IS NULL AND status='pending'")
end
def down
end
end