summaryrefslogtreecommitdiff
path: root/db/migrate/20151019111703_fail_build_without_names.rb
blob: 362e31eb4354fb06c34b0c7ead958e6ced23b164 (plain)
1
2
3
4
5
6
7
8
9
# rubocop:disable all
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