2016-06-09 08:39:16 -04:00
|
|
|
# rubocop:disable all
|
2015-10-23 07:33:44 -04:00
|
|
|
class FailBuildWithEmptyName < ActiveRecord::Migration
|
2015-11-05 09:41:03 -05:00
|
|
|
def up
|
2015-10-23 07:33:44 -04:00
|
|
|
execute("UPDATE ci_builds SET status='failed' WHERE (name IS NULL OR name='') AND status='pending'")
|
|
|
|
end
|
2015-11-05 09:41:03 -05:00
|
|
|
|
|
|
|
def down
|
|
|
|
end
|
2015-10-23 07:33:44 -04:00
|
|
|
end
|