summaryrefslogtreecommitdiff
path: root/db/migrate/20151023112551_fail_build_with_empty_name.rb
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