debian-mirror-gitlab/db/migrate/20230403145705_add_purl_sync_to_settings.rb

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

8 lines
221 B
Ruby
Raw Normal View History

2023-06-20 00:43:36 +05:30
# frozen_string_literal: true
class AddPurlSyncToSettings < Gitlab::Database::Migration[2.1]
def change
add_column :application_settings, :package_metadata_purl_types, :smallint, array: true, default: []
end
end