Migrate sidekiq queue to the new :hashed_storage namespace

`project_migrate_hashed_storage` is now
`hashed_storage:hashed_storage_project_migrate`
This commit is contained in:
Gabriel Mazetto 2019-03-01 08:20:52 +01:00
parent b91a005162
commit 61d77a042d
2 changed files with 18 additions and 1 deletions

View File

@ -0,0 +1,17 @@
# frozen_string_literal: true
class MigrateProjectMigrateSidekiqQueue < ActiveRecord::Migration[5.0]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
DOWNTIME = false
def up
sidekiq_queue_migrate 'project_migrate_hashed_storage', to: 'hashed_storage:hashed_storage_project_migrate'
end
def down
sidekiq_queue_migrate 'hashed_storage:hashed_storage_project_migrate', to: 'project_migrate_hashed_storage'
end
end

View File

@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20190228092516) do
ActiveRecord::Schema.define(version: 20190301081611) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"