Files
gitlab-foss/db/migrate/20240327110521_migrate_zoekt_settings_in_application_settings.rb
2024-05-02 12:10:28 +00:00

20 lines
557 B
Ruby

# frozen_string_literal: true
class MigrateZoektSettingsInApplicationSettings < Gitlab::Database::Migration[2.2]
restrict_gitlab_migration gitlab_schema: :gitlab_main
milestone '16.11'
class ApplicationSetting < MigrationRecord
self.table_name = 'application_settings'
end
def up
# no-op this was just a data migration which is already done in 16.11. The plan is to remove the feature-flags used
# in this migration. So better to disable this migration in 17.0 to avoid any migration issues.
end
def down
# No op
end
end