Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-11-17Prevent update_column_in_batches on large tablesSean McGivern
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.
2017-06-21Disable transactions in migrations that should not use itGrzegorz Bizon
2017-05-29Disable Migration/UpdateColumnInBatches for old migrationsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2016-07-21Don't drop in DropAndReaddHasExternalWikiInProjectsYorick Peterse
Dropping a column and then re-adding it can lead to the application throwing errors as the column may temporarily not exist. To work around this we'll reset the various project rows in batches _without_ removing any columns.
2016-07-21Fix migration to make it fastRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>