mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-23 02:54:40 +00:00
12 lines
260 B
Ruby
12 lines
260 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddVulnerabilityEventsToWebHooks < Gitlab::Database::Migration[2.2]
|
|
milestone '17.7'
|
|
|
|
enable_lock_retries!
|
|
|
|
def change
|
|
add_column :web_hooks, :vulnerability_events, :boolean, null: false, default: false
|
|
end
|
|
end
|