diff options
author | Shinya Maeda <shinya@gitlab.com> | 2018-03-07 01:34:17 +0900 |
---|---|---|
committer | Shinya Maeda <shinya@gitlab.com> | 2018-03-07 01:39:00 +0900 |
commit | 10f135cf8a9152d78385ca0bd059aee62ebad4dd (patch) | |
tree | c203d617a8b8fe49e16c5e0a8fa30d3b55ebc1d8 /db | |
parent | 2a97550d2feb128f9b0810eb36328b958608ed6c (diff) | |
download | gitlab-ce-10f135cf8a9152d78385ca0bd059aee62ebad4dd.tar.gz |
Move update_head_pipeline_for_merge_request queue to pipeline_processing namespace
Diffstat (limited to 'db')
-rw-r--r-- | db/post_migrate/20180307012445_migrate_update_head_pipeline_for_merge_request_sidekiq_queue.rb | 15 | ||||
-rw-r--r-- | db/schema.rb | 2 |
2 files changed, 16 insertions, 1 deletions
diff --git a/db/post_migrate/20180307012445_migrate_update_head_pipeline_for_merge_request_sidekiq_queue.rb b/db/post_migrate/20180307012445_migrate_update_head_pipeline_for_merge_request_sidekiq_queue.rb new file mode 100644 index 00000000000..9728df6d409 --- /dev/null +++ b/db/post_migrate/20180307012445_migrate_update_head_pipeline_for_merge_request_sidekiq_queue.rb @@ -0,0 +1,15 @@ +class MigrateUpdateHeadPipelineForMergeRequestSidekiqQueue < ActiveRecord::Migration + include Gitlab::Database::MigrationHelpers + + DOWNTIME = false + + def up + sidekiq_queue_migrate 'pipeline_default:update_head_pipeline_for_merge_request', + to: 'pipeline_processing:update_head_pipeline_for_merge_request' + end + + def down + sidekiq_queue_migrate 'pipeline_processing:update_head_pipeline_for_merge_request', + to: 'pipeline_default:update_head_pipeline_for_merge_request' + end +end diff --git a/db/schema.rb b/db/schema.rb index 5bb87fa2b86..cc82a7d4f4b 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20180306074045) do +ActiveRecord::Schema.define(version: 20180307012445) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" |