Skip to content

Archive non obsolete migrations

John Mason requested to merge jm-archive-non-obsolete-migrations into main

Copies all non-obsolete advanced search migrations to this project (along with corresponding specs)

Note: this currently does not do anything to source repository (ie: marking the archived migrations as obsolete)

> tree
.
├── Gemfile
├── Gemfile.lock
├── README.md
├── lib
│   └── migrate
│       ├── 20220118150500_delete_orphaned_commits.rb
│       ├── 20220119120500_populate_commit_permissions_in_main_index.rb
│       ├── 20220512150000_pause_indexing_for_unsupported_es_versions.rb
│       ├── 20220613120500_migrate_commits_to_separate_index.rb
│       ├── 20220713103500_delete_commits_from_original_index.rb
│       ├── 20220824123000_add_label_ids_and_schema_version_to_issues_mapping.rb
│       ├── 20220824133000_add_hidden_to_issues.rb
│       ├── 20220825102900_backfill_label_ids_for_issues.rb
│       ├── 20221018125700_create_user_index.rb
│       ├── 20221026082700_backfill_users.rb
│       ├── 20221124090600_add_namespace_ancestry_ids_to_original_index_mapping.rb
│       ├── 20221213090600_add_traversal_ids_to_original_index_mapping.rb
│       ├── 20221221110300_backfill_traversal_ids_to_blobs_and_wiki_blobs.rb
│       ├── 20230111142636_add_internal_to_notes.rb
│       ├── 20230130154000_add_schema_version_to_main_index_mapping.rb
│       ├── 20230131184300_backfill_traversal_ids_for_projects.rb
│       ├── 20230202100000_add_hashed_root_namespace_id_to_notes.rb
│       ├── 20230203122938_backfill_internal_on_notes.rb
│       ├── 20230208090000_delete_removed_fields_from_users.rb
│       ├── 20230208100000_reindex_users.rb
│       ├── 20230209195404_backfill_hidden_on_issues.rb
│       ├── 20230307102400_backfill_hashed_root_namespace_id_on_notes.rb
│       ├── 20230316150000_add_hashed_root_namespace_id_to_merge_requests.rb
│       ├── 20230317120500_add_hashed_root_namespace_id_to_issues.rb
│       ├── 20230320011400_add_hashed_root_namespace_id_to_commits.rb
│       ├── 20230321091100_backfill_hashed_root_namespace_id_on_issues.rb
│       ├── 20230321202400_backfill_hashed_root_namespace_id_on_merge_requests.rb
│       ├── 20230325200700_backfill_hashed_root_namespace_id_to_commits.rb
│       └── 20230405500000_backfill_wiki_permissions_in_main_index.rb
├── script
│   └── archive.rb
└── spec
    └── migrate
        ├── 20220118150500_delete_orphaned_commits_spec.rb
        ├── 20220119120500_populate_commit_permissions_in_main_index_spec.rb
        ├── 20220512150000_pause_indexing_for_unsupported_es_versions_spec.rb
        ├── 20220613120500_migrate_commits_to_separate_index_spec.rb
        ├── 20220713103500_delete_commits_from_original_index_spec.rb
        ├── 20220824123000_add_label_ids_and_schema_version_to_issues_mapping_spec.rb
        ├── 20220824133000_add_hidden_to_issues_spec.rb
        ├── 20220825102900_backfill_label_ids_for_issues_spec.rb
        ├── 20221018125700_create_user_index_spec.rb
        ├── 20221026082700_backfill_users_spec.rb
        ├── 20221124090600_add_namespace_ancestry_ids_to_original_index_mapping_spec.rb
        ├── 20221213090600_add_traversal_ids_to_original_index_mapping_spec.rb
        ├── 20221221110300_backfill_traversal_ids_to_blobs_and_wiki_blobs_spec.rb
        ├── 20230111142636_add_internal_to_notes_spec.rb
        ├── 20230130154000_add_schema_version_to_main_index_mapping_spec.rb
        ├── 20230131184300_backfill_traversal_ids_for_projects_spec.rb
        ├── 20230202100000_add_hashed_root_namespace_id_to_notes_spec.rb
        ├── 20230203122938_backfill_internal_on_notes_spec.rb
        ├── 20230208090000_delete_removed_fields_from_users_spec.rb
        ├── 20230208100000_reindex_users_spec.rb
        ├── 20230209195404_backfill_hidden_on_issues_spec.rb
        ├── 20230307102400_backfill_hashed_root_namespace_id_on_notes_spec.rb
        ├── 20230316150000_add_hashed_root_namespace_id_to_merge_requests_spec.rb
        ├── 20230317120500_add_hashed_root_namespace_id_to_issues_spec.rb
        ├── 20230320011400_add_hashed_root_namespace_id_to_commits_spec.rb
        ├── 20230321091100_backfill_hashed_root_namespace_id_on_issues_spec.rb
        ├── 20230321202400_backfill_hashed_root_namespace_id_on_merge_requests_spec.rb
        └── 20230325200700_backfill_hashed_root_namespace_id_to_commits_spec.rb
Edited by John Mason

Merge request reports