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

20151019111703_fail_build_without_names.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dcdb5d1b25ddcd5adb0744ce9d143b8814d4ea02 (plain)
1
2
3
4
5
6
7
8
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