summaryrefslogtreecommitdiff
path: root/db/migrate/20160615191922_set_missing_stage_on_ci_builds.rb
diff options
context:
space:
mode:
authorSean McGivern <sean@gitlab.com>2017-11-17 13:38:14 +0000
committerSean McGivern <sean@gitlab.com>2017-11-17 16:56:50 +0000
commitd8be981466e2a794b42996960f1fdb91e560a707 (patch)
tree13da4c4968dc8a2abf8ef2e531d905759521c5f5 /db/migrate/20160615191922_set_missing_stage_on_ci_builds.rb
parent7910b0256e1ed3a9fdabb875c43f1ad328e1920e (diff)
downloadgitlab-ce-d8be981466e2a794b42996960f1fdb91e560a707.tar.gz
Prevent update_column_in_batches on large tables
add_column_with_default is implemented in terms of update_column_in_batches, but update_column_in_batches can be used independently. Neither of these should be used on the specified large tables, because they will cause issues on large instances like GitLab.com. This also ignores the cop for all existing migrations, renaming AddColumnWithDefaultToLargeTable where appropriate.
Diffstat (limited to 'db/migrate/20160615191922_set_missing_stage_on_ci_builds.rb')
-rw-r--r--db/migrate/20160615191922_set_missing_stage_on_ci_builds.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/db/migrate/20160615191922_set_missing_stage_on_ci_builds.rb b/db/migrate/20160615191922_set_missing_stage_on_ci_builds.rb
index 5336b036bca..c58cb957df4 100644
--- a/db/migrate/20160615191922_set_missing_stage_on_ci_builds.rb
+++ b/db/migrate/20160615191922_set_missing_stage_on_ci_builds.rb
@@ -1,3 +1,4 @@
+# rubocop:disable Migration/UpdateLargeTable
# rubocop:disable Migration/UpdateColumnInBatches
class SetMissingStageOnCiBuilds < ActiveRecord::Migration
include Gitlab::Database::MigrationHelpers