10 lines
265 B
Ruby
10 lines
265 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddVulnerabilityEventsToIntegrations < ActiveRecord::Migration[6.1]
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
def change
|
||
|
add_column :integrations, :vulnerability_events, :boolean, default: false, null: false
|
||
|
end
|
||
|
end
|