BigW Consortium Gitlab

20161223034433_add_estimate_to_issuables_ce.rb 612 Bytes
Newer Older
1 2 3 4 5
class AddEstimateToIssuablesCe < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

6
  def up
7 8 9 10 11 12 13 14
    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
15 16 17 18 19 20 21 22 23 24

  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
25
end