2018-12-23 12:14:25 +05:30
|
|
|
class AddEstimateToIssuablesCe < ActiveRecord::Migration[4.2]
|
2017-08-17 22:00:37 +05:30
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
def up
|
|
|
|
unless column_exists?(:issues, :time_estimate)
|
|
|
|
add_column :issues, :time_estimate, :integer
|
|
|
|
end
|
|
|
|
|
|
|
|
unless column_exists?(:merge_requests, :time_estimate)
|
|
|
|
add_column :merge_requests, :time_estimate, :integer
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
if column_exists?(:issues, :time_estimate)
|
|
|
|
remove_column :issues, :time_estimate
|
|
|
|
end
|
|
|
|
|
|
|
|
if column_exists?(:merge_requests, :time_estimate)
|
|
|
|
remove_column :merge_requests, :time_estimate
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|