2017-04-16 07:14:39 -04:00
|
|
|
class AddRetriedToCiBuild < ActiveRecord::Migration
|
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
2017-05-09 07:14:45 -04:00
|
|
|
def change
|
|
|
|
add_column(:ci_builds, :retried, :boolean)
|
2017-04-16 07:14:39 -04:00
|
|
|
end
|
|
|
|
end
|