debian-mirror-gitlab/db/migrate/20151019111703_fail_build_without_names.rb

10 lines
205 B
Ruby
Raw Normal View History

# rubocop:disable all
2015-10-24 18:46:33 +05:30
class FailBuildWithoutNames < ActiveRecord::Migration
2015-11-26 14:37:03 +05:30
def up
2015-10-24 18:46:33 +05:30
execute("UPDATE ci_builds SET status='failed' WHERE name IS NULL AND status='pending'")
end
2015-11-26 14:37:03 +05:30
def down
end
2015-10-24 18:46:33 +05:30
end