Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20160830203109_add_confidential_issues_events_to_web_hooks.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a27947212f6031b07086c59fe6f9d408bf6bcb27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class AddConfidentialIssuesEventsToWebHooks < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_column_with_default :web_hooks, :confidential_issues_events, :boolean, default: false, allow_null: false
  end

  def down
    remove_column :web_hooks, :confidential_issues_events
  end
end