summaryrefslogtreecommitdiff
path: root/rubocop/cop/migration/add_index.rb
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@13-9-stable-eev13.9.0-rc42GitLab Bot2021-02-181-0/+2
|
* Use gitlab-stylesRémy Coutable2017-12-221-1/+1
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Enable Style/MutableConstantDouwe Maan2017-02-231-1/+1
|
* Explicitly require rubocop migration_helpersdm-add-column-with-default-copDouwe Maan2017-02-081-0/+2
|
* Add cop that checks if add_column_with_default is used with up/down methodsDouwe Maan2017-02-081-1/+1
|
* Added RuboCop cops for checking DB migrationsmigration-copsYorick Peterse2016-06-291-0/+46
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.