summaryrefslogtreecommitdiff
path: root/db/migrate/20170503023315_add_repository_update_events_to_web_hooks.rb
blob: 0faea87a962e3483a8a2a3fdfabd54b056774996 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class AddRepositoryUpdateEventsToWebHooks < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

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

  def down
    remove_column :web_hooks, :repository_update_events
  end
end