summaryrefslogtreecommitdiff
path: root/db/migrate/20191023093207_add_comment_actions_to_services.rb
blob: f3fc12ac7c744a37ccde603340e569309ef91ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class AddCommentActionsToServices < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_column_with_default(:services, :comment_on_event_enabled, :boolean, default: true)
  end

  def down
    remove_column(:services, :comment_on_event_enabled)
  end
end