# frozen_string_literal: true class AddGroupIdToVulnerabilityExports < ActiveRecord::Migration[6.0] DOWNTIME = false def change add_column :vulnerability_exports, :group_id, :integer change_column_null :vulnerability_exports, :project_id, true end end