summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2019-01-25 20:43:37 +0000
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2019-01-25 20:43:37 +0000
commit5f6f0cd6956db1349234ea1aea47776dffb2cfe4 (patch)
treed29f13f836f710a60f2f7b30fb1951112e0ad676 /db
parent1d0580d4dca8133efe8b6035ead4455e7b1b40c5 (diff)
parent41712ebe0b22913c6fb844e62c77dc666b0b06a2 (diff)
downloadgitlab-ce-5f6f0cd6956db1349234ea1aea47776dffb2cfe4.tar.gz
Merge branch '53966-refactor-hashed-storage' into 'master'
Refactor Hashed Storage for future Rollback functionality See merge request gitlab-org/gitlab-ce!24402
Diffstat (limited to 'db')
-rw-r--r--db/post_migrate/20190124200344_migrate_storage_migrator_sidekiq_queue.rb18
-rw-r--r--db/schema.rb2
2 files changed, 19 insertions, 1 deletions
diff --git a/db/post_migrate/20190124200344_migrate_storage_migrator_sidekiq_queue.rb b/db/post_migrate/20190124200344_migrate_storage_migrator_sidekiq_queue.rb
new file mode 100644
index 00000000000..193bd571831
--- /dev/null
+++ b/db/post_migrate/20190124200344_migrate_storage_migrator_sidekiq_queue.rb
@@ -0,0 +1,18 @@
+# frozen_string_literal: true
+
+# See http://doc.gitlab.com/ce/development/migration_style_guide.html
+# for more information on how to write migrations for GitLab.
+
+class MigrateStorageMigratorSidekiqQueue < ActiveRecord::Migration[5.0]
+ include Gitlab::Database::MigrationHelpers
+
+ DOWNTIME = false
+
+ def up
+ sidekiq_queue_migrate 'storage_migrator', to: 'hashed_storage:hashed_storage_migrator'
+ end
+
+ def down
+ sidekiq_queue_migrate 'hashed_storage:hashed_storage_migrator', to: 'storage_migrator'
+ end
+end
diff --git a/db/schema.rb b/db/schema.rb
index cd502d06bf4..859f007dbe1 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: 20190115054216) do
+ActiveRecord::Schema.define(version: 20190124200344) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"