- 17 Nov, 2017 1 commit
-
-
Sean McGivern authored
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.
-
- 10 Oct, 2017 1 commit
-
-
Sean McGivern authored
The types `timestamp` and `datetime` are aliases: https://github.com/rails/rails/blob/v4.2.10/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb#L362-L364
-
- 14 Aug, 2017 1 commit
-
-
Michael Kozono authored
-
- 01 Aug, 2017 1 commit
-
-
Shinya Maeda authored
-
- 26 Jul, 2017 1 commit
-
-
Robert Speicher authored
- ci_builds -- 33 million rows, 55 GB - merge_request_diff_files -- 5 million rows, 9 GB (and growing rapidly) - merge_request_diffs -- 5 million rows, 190 GB
-
- 14 Jul, 2017 1 commit
-
-
Yorick Peterse authored
These indexes are not recorded in the WAL (at least until PostgreSQL 10) and this isn't worth the minor performance improvement over btree indexes.
-
- 13 Jun, 2017 1 commit
-
-
blackst0ne authored
-
- 29 May, 2017 1 commit
-
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
- 28 Apr, 2017 3 commits
-
-
Robert Speicher authored
-
Robert Speicher authored
We're going to add another cop that deals with another aspect of `add_column_with_default`, so we need to separate them.
-
Robert Speicher authored
-
- 05 Apr, 2017 1 commit
-
-
blackst0ne authored
-
- 07 Mar, 2017 1 commit
-
-
Douwe Maan authored
-
- 23 Feb, 2017 1 commit
-
-
Douwe Maan authored
-
- 10 Feb, 2017 1 commit
-
-
Yorick Peterse authored
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.
-
- 08 Feb, 2017 2 commits
-
-
Douwe Maan authored
-
Douwe Maan authored
-
- 29 Jun, 2016 1 commit
-
-
Yorick Peterse authored
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.
-