gitlab-org--gitlab-foss/db/migrate/20161223034433_add_estimate_to_issuables_ce.rb
Rémy Coutable 929c20c2bc
Make the time estimate migrations reversible
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-01-24 17:15:37 +01:00

25 lines
612 B
Ruby

class AddEstimateToIssuablesCe < ActiveRecord::Migration
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