summaryrefslogtreecommitdiff
path: root/db/migrate/20151019111703_fail_build_without_names.rb
blob: 2dc9ffa32b979eb6bc0cb5d9b03e83aab4656db3 (plain)
1
2
3
4
5
6
7
8
class FailBuildWithoutNames < ActiveRecord::Migration[4.2]
  def up
    execute("UPDATE ci_builds SET status='failed' WHERE name IS NULL AND status='pending'")
  end

  def down
  end
end