BigW Consortium Gitlab

20160913162434_remove_projects_pushes_since_gc.rb 572 Bytes
Newer Older
1 2 3
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

4
# rubocop:disable Migration/AddColumnWithDefaultToLargeTable
5 6 7 8 9 10 11 12 13 14 15 16 17
class RemoveProjectsPushesSinceGc < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = true
  DOWNTIME_REASON = 'This migration removes an existing column'

  disable_ddl_transaction!

  def up
    remove_column :projects, :pushes_since_gc
  end

  def down
18
    add_column_with_default :projects, :pushes_since_gc, :integer, default: 0
19 20
  end
end