gitlab-org--gitlab-foss/db/migrate/20220726154016_make_compone...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
218 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class MakeComponentVersionNullable < Gitlab::Database::Migration[2.0]
enable_lock_retries!
def change
change_column_null :sbom_occurrences, :component_version_id, true
end
end