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-02-10Enforce use of add_concurrent_foreign_keyYorick Peterse
This adds a Rubocop rule to enforce the use of add_concurrent_foreign_key instead of the regular add_foreign_key method. This cop has been disabled for existing migrations so we don't need to change those.
2017-02-09Add a spec for our custom GemFetcher copRobert Speicher
2017-02-09Explicitly require rubocop migration_helpersDouwe Maan
2017-02-09Add cop that checks if add_column_with_default is used with up/down methodsDouwe Maan
2017-01-31cop for gem fetched from a git sourceAdam Pahlevi
code fix for aesthetic & conventions remove unused proc
2016-06-29Added RuboCop cops for checking DB migrationsYorick Peterse
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.