diff options
author | Douwe Maan <douwe@selenight.nl> | 2017-12-13 16:14:49 +0100 |
---|---|---|
committer | Douwe Maan <douwe@selenight.nl> | 2017-12-13 16:28:27 +0100 |
commit | 4a6ba82b28b0219a13dcb8732361193e9c9b3890 (patch) | |
tree | 70b052885cd9b57f022c14f36d1385de56480cfe /db/post_migrate | |
parent | 3cad04cd51fb2453e33044a0eb2923dd389c2d20 (diff) | |
download | gitlab-ce-4a6ba82b28b0219a13dcb8732361193e9c9b3890.tar.gz |
Remove unused queuesdm-dedicated-sidekiq-queues
Diffstat (limited to 'db/post_migrate')
-rw-r--r-- | db/post_migrate/20171213160445_migrate_github_importer_advance_stage_sidekiq_queue.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/db/post_migrate/20171213160445_migrate_github_importer_advance_stage_sidekiq_queue.rb b/db/post_migrate/20171213160445_migrate_github_importer_advance_stage_sidekiq_queue.rb new file mode 100644 index 00000000000..149c28f1946 --- /dev/null +++ b/db/post_migrate/20171213160445_migrate_github_importer_advance_stage_sidekiq_queue.rb @@ -0,0 +1,16 @@ +# See http://doc.gitlab.com/ce/development/migration_style_guide.html +# for more information on how to write migrations for GitLab. + +class MigrateGithubImporterAdvanceStageSidekiqQueue < ActiveRecord::Migration + include Gitlab::Database::MigrationHelpers + + DOWNTIME = false + + def up + sidekiq_queue_migrate 'github_importer_advance_stage', to: 'github_import_advance_stage' + end + + def down + sidekiq_queue_migrate 'github_import_advance_stage', to: 'github_importer_advance_stage' + end +end |