# 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