10 lines
188 B
Ruby
10 lines
188 B
Ruby
|
class AddRetriedToCiBuild < ActiveRecord::Migration
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
DOWNTIME = false
|
||
|
|
||
|
def change
|
||
|
add_column(:ci_builds, :retried, :boolean)
|
||
|
end
|
||
|
end
|