# frozen_string_literal: true class AddMigratedToNewStructureColumnToVulnerabilityOccurrences < Gitlab::Database::Migration[1.0] def change add_column :vulnerability_occurrences, :migrated_to_new_structure, :boolean, default: false, null: false end end