Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20151023112551_fail_build_with_empty_name.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0666dfeaef4105e376b5920176822d239d76bd0f (plain)
1
2
3
4
5
6
7
8
9
# rubocop:disable all
class FailBuildWithEmptyName < ActiveRecord::Migration
  def up
    execute("UPDATE ci_builds SET status='failed' WHERE (name IS NULL OR name='') AND status='pending'")
  end

  def down
  end
end