summaryrefslogtreecommitdiff
path: root/rubocop/migration_helpers.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-09-191-5/+7
|
* Add cop for use of remove_columnadd-remove-column-copSean McGivern2017-12-111-0/+6
| | | | | | | remove_column should only be used in the up (or change) step of a migration if it's a post-deployment migration. Otherwise there will be downtime due to the ActiveRecord column cache, which we can avoid by using the IgnorableColumn concern in combination with a post-deployment migration.
* New Migration/UpdateColumnInBatches copRémy Coutable2017-05-291-2/+3
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Added RuboCop cops for checking DB migrationsmigration-copsYorick Peterse2016-06-291-0/+10
There are currently two cops for this: * Migration/AddIndex: checks if indexes are added concurrently * Migration/ColumnWithDefault: checks if columns with default values are added in a concurrent manner Both cops are fairly simple and make no attempt at correcting the code as this is quite hard to do (e.g. modifications may need to be applied in various places in the same file). They however should provide enough to catch people ignoring the comments in generated migrations telling them to use add_concurrent_index or add_column_with_default.