summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200819082334_remove_default_from_services.rb
blob: 2a990016c9518aa66cdd1a472d2d826f617f3a36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

class RemoveDefaultFromServices < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def up
    with_lock_retries do
      remove_column :services, :default, :boolean
    end
  end

  def down
    with_lock_retries do
      add_column :services, :default, :boolean, default: false
    end
  end
end