Commit 8b4a335f authored by Grzegorz Bizon's avatar Grzegorz Bizon

Add migration that migrates CI/CD queues

parent 193b1996
class MigratePipelineSidekiqQueues < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
def up
sidekiq_queue_migrate 'build', to: 'pipeline_default'
sidekiq_queue_migrate 'pipeline', to: 'pipeline_default'
end
def down
sidekiq_queue_migrate 'pipeline_default', to: 'pipeline'
end
end
......@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20170820100558) do
ActiveRecord::Schema.define(version: 20170822101017) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment