2018-12-23 12:14:25 +05:30
|
|
|
class FailBuildWithoutNames < ActiveRecord::Migration[4.2]
|
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
|