diff options
author | Michael Kozono <mkozono@gmail.com> | 2017-09-07 18:50:03 -0700 |
---|---|---|
committer | Michael Kozono <mkozono@gmail.com> | 2017-09-14 14:17:23 -0700 |
commit | f1e963bd89e737868a3a49358d714a288738c2e8 (patch) | |
tree | f6dabb0d992f24eef6ce23f40781a797e8f0bc5b /db | |
parent | bedcb7f43ddb8d6e2cce9424e3d988fe1d5a7cc8 (diff) | |
download | gitlab-ce-f1e963bd89e737868a3a49358d714a288738c2e8.tar.gz |
Add specs for deleting conflicting redirects
Diffstat (limited to 'db')
-rw-r--r-- | db/post_migrate/20170907170235_delete_conflicting_redirect_routes.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/post_migrate/20170907170235_delete_conflicting_redirect_routes.rb b/db/post_migrate/20170907170235_delete_conflicting_redirect_routes.rb index 4111c884c28..73bb4603eb6 100644 --- a/db/post_migrate/20170907170235_delete_conflicting_redirect_routes.rb +++ b/db/post_migrate/20170907170235_delete_conflicting_redirect_routes.rb @@ -7,7 +7,7 @@ class DeleteConflictingRedirectRoutes < ActiveRecord::Migration DOWNTIME = false BATCH_SIZE = 1000 # Number of rows to process per job JOB_BUFFER_SIZE = 1000 # Number of jobs to bulk queue at a time - MIGRATION = 'DeleteConflictingRedirectRoutes'.freeze + MIGRATION = 'DeleteConflictingRedirectRoutesRange'.freeze disable_ddl_transaction! |