diff options
author | Gabriel Mazetto <brodock@gmail.com> | 2019-03-01 08:20:52 +0100 |
---|---|---|
committer | Gabriel Mazetto <brodock@gmail.com> | 2019-03-01 15:50:27 +0100 |
commit | 61d77a042da2ada48cdcd83f97923780aac407f4 (patch) | |
tree | b10a1bdf7d2b578a13dce4c606c35ecc0399d57f /db | |
parent | b91a005162515cfe398d90772ed66ecd92e17531 (diff) | |
download | gitlab-ce-61d77a042da2ada48cdcd83f97923780aac407f4.tar.gz |
Migrate sidekiq queue to the new :hashed_storage namespace
`project_migrate_hashed_storage` is now
`hashed_storage:hashed_storage_project_migrate`
Diffstat (limited to 'db')
-rw-r--r-- | db/post_migrate/20190301081611_migrate_project_migrate_sidekiq_queue.rb | 17 | ||||
-rw-r--r-- | db/schema.rb | 2 |
2 files changed, 18 insertions, 1 deletions
diff --git a/db/post_migrate/20190301081611_migrate_project_migrate_sidekiq_queue.rb b/db/post_migrate/20190301081611_migrate_project_migrate_sidekiq_queue.rb new file mode 100644 index 00000000000..6af7902e0c4 --- /dev/null +++ b/db/post_migrate/20190301081611_migrate_project_migrate_sidekiq_queue.rb @@ -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 diff --git a/db/schema.rb b/db/schema.rb index 24a98c374ca..2ddc8358433 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -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" |