summaryrefslogtreecommitdiff
path: root/spec/migrations/schedule_merge_request_diff_migrations_spec.rb
Commit message (Collapse)AuthorAgeFilesLines
* Replace 'Sidekiq::Testing.inline!' with 'perform_enqueued_jobs'blackst0ne2018-07-231-1/+1
| | | | | | | | | | `perform_enqueued_jobs` is a Sidekiq method. Using this method violates the Dependency inversion principle[0]. This commit replaces `perform_enqueued_jobs` with ActiveJob's abstract method `perform_enqueued_jobs` in specs. [0]: https://en.wikipedia.org/wiki/Dependency_inversion_principle
* Refactor matchers for background migrationsce-backport=reorder-issuesJarka Kadlecová2018-01-051-3/+3
|
* De-duplicate background migration matchers defined in ↵sh-deduplicate-background-migration-specsStan Hu2017-11-161-16/+3
| | | | spec/support/migrations_helpers.rb
* Migrate MR commits and diffs to new tablesmerge-request-commits-background-migrationSean McGivern2017-08-031-0/+59
Previously, we stored these as serialised fields - `st_{commits,diffs}` - on the `merge_request_diffs` table. These now have their own tables - `merge_request_diff_{commits,diffs}` - with a column for each attribute of the serialised data. Add a background migration to go through the existing MR diffs and migrate them to the new format. Ignore any contents that cannot be displayed. Assuming that we have 5 million rows to migrate, and each batch of 2,500 rows can be completed in 5 minutes, this will take about 7 days to migrate everything.