overleaf/services/web/migrations
Eric Mc Sween 960701d143 Merge pull request #15541 from overleaf/em-drop-redundant-indexes
Drop redundant indexes

GitOrigin-RevId: e85729b2a7320a2fa77f1ff2fa054b5438139b7d
2023-11-03 09:00:19 +00:00
..
lib
20190720165251_create_migrations.js
20190730093801_script_example.js
20190912145001_create_contacts_indexes.js
20190912145002_create_deletedProjects_indexes.js
20190912145003_create_deletedSubscriptions_indexes.js
20190912145004_create_docHistoryIndex_indexes.js
20190912145005_create_docHistory_indexes.js
20190912145006_create_docOps_indexes.js
20190912145007_create_docSnapshots_indexes.js
20190912145008_create_docs_indexes.js
20190912145009_create_githubSyncEntityVersions_indexes.js
20190912145010_create_githubSyncProjectStates_indexes.js
20190912145011_create_githubSyncUserCredentials_indexes.js
20190912145012_create_institutions_indexes.js
20190912145013_create_messages_indexes.js
20190912145014_create_notifications_indexes.js
20190912145015_create_oauthAccessTokens_indexes.js
20190912145016_create_oauthApplications_indexes.js
20190912145017_create_oauthAuthorizationCodes_indexes.js
20190912145018_create_projectHistoryFailures_indexes.js
20190912145019_create_projectHistoryLabels_indexes.js
20190912145020_create_projectHistoryMetaData_indexes.js
20190912145021_create_projectHistorySyncState_indexes.js
20190912145022_create_projectImportFailures_indexes.js
20190912145023_create_projectInvites_indexes.js
20190912145024_create_projects_indexes.js
20190912145025_create_publishers_indexes.js
20190912145026_create_rooms_indexes.js
20190912145027_create_spellingPreferences_indexes.js
20190912145028_create_subscriptions_indexes.js
20190912145029_create_tags_indexes.js
20190912145030_create_templates_indexes.js
20190912145031_create_tokens_indexes.js
20190912145032_create_users_indexes.js
20190912145033_create_userstubs_indexes.js
20191106102104_saml-log-indexes.js
20191107191318_saml-indentifiers-index.js
20200110183327_brandVarationIdIndex.js
20200120163346_atlas_recommended_indexes.js
20200210084301_remove-duplicate-deleted-things.js
20200210121103_uniqueify-deletedthings-indexes.js
20200302143624_users_affiliationUnchecked_index.js
20200522145727_dropProjectImportFailures.js
20200522145741_dropProjectImportBatchRecords.js
20200608213302_saml-cache-indexes.js
20200729120824_update_subscriptions_manager_ids_index.js
20201106094956_active-projects-index-with-id.js
20210310111225_create_deletedFiles_projectId_index.js
20210407085118_token-expiry-with-ttl-index.js
20210408123210_create_docs_project_id_deleted_deletedAt_index.js
20210721081758_create_history_display_index.js
20210726083523_convert_confirmedAt_strings_to_dates.js
20210726083523_convert_split_tests_assigned_at_strings_to_dates.js
20210727123346_ce_sp_backfill_deleted_files.js
20210727150530_ce_sp_backfill_deleted_docs.js
20210728115327_ce_sp_backfill_dummy_doc_meta.js
20210924140139_splittests-name-index.js
20220105123000_cleanup_unused_collections.js
20220105130000_fix_saml_indexes.js
20220222095146_split_tests_analytics_enabled.js
20220811111800_create_dropboxEntities_index.js
20220815105500_create_dropboxProjects_index.js
20220817120900_create_dropboxProjects_index.js
20220825160708_recreate_dropboxEntities.js
20220826104236_disable_alpha_beta_program.js
20220830140459_create_index_user_labsProgram_labsProgramGalileo.js
20220913105500_create_auditLog_indexes.js
20220913125500_migrate_auditLog_to_collections.js
20220929193200_add_auditLog_indexes.js
20221111111111_ce_sp_convert_archived_state.js
20221122191857_project_history_chunks_indexes.js
20230110140452_rename_recurly_cached_status.js
20230124092607_clear_old_2fa_setup.js
20230207134844_group_invite_emails_to_lowercase.js
20230217205311_fix_deleted_history_chunks_index.js
20230315170739_back_fill_doc_rev.js
20230405190240_oauth_refresh_tokens_index.js
20230406125632_oauth_tokens_ttl.js
20230426095212_personal_oauth_tokens_user_index.js
20230428154643_history_chunks_garbage_collection_index.js
20230502180757_server_pro_oauth_indexes.js
20230512100122_ensure_history_migration.js
20230616153016_user_features_updated_at_index.js
20230817081910_back_fill_gitBridge_feature_server_pro.js
20230928092537_backfill_subscriptions_managed_users_feature_flag.js
20231016101457_drop_history_display_index.js Merge pull request #15270 from overleaf/em-drop-history-display-index 2023-10-18 08:04:23 +00:00
20231025094810_sso_config_certificates_array.js Merge pull request #15223 from overleaf/ab-sso-multiple-certificates-ui 2023-10-30 09:04:38 +00:00
20231030160030_managed_users_enabled.js adding DB migration for managedUserEnabled flag (#15516) 2023-11-01 09:02:57 +00:00
20231031164732_drop_redundant_indexes.js Merge pull request #15541 from overleaf/em-drop-redundant-indexes 2023-11-03 09:00:19 +00:00
20231101153447_partial_last_opened_index.js Merge pull request #15555 from overleaf/em-partial-last-opened-index 2023-11-03 09:00:16 +00:00
README.md

Migrations

Migrations for the app environment live in this folder, and use the East migration framework.

We have an npm script which wraps east: npm run migrations -- ...

For example:

npm run migrations -- list -t 'saas'

Environments and Tags

Overleaf is deployed in three different environments:

  • server-ce: community edition installations (the base system)
  • server-pro: server pro installations
  • saas: the production overleaf site

All migrations are tagged with the environments they should run in. For example, a migration that should run in every environment would be tagged with ['server-ce', 'server-pro', 'saas'].

When invoking east, we specify the relevant tags with the -t or --tags flag. Our adapter will refuse to run if this flag is not set.

Creating new migrations

To create a new migration, run:

npm run migrations -- create <migration name>

This command will create a new migration file in the migrations folder, based on a template. The template provides migrate and rollback methods, which are run by the east binary when running the migrations. rollback should undo the changes made in migrate.

Running scripts as a migration

To run a script in a migration file, look at migrations/20190730093801_script_example.js, which runs the script scripts/example/script_for_migration.js. This uses a method where the script can be run standalone via node, or through the migrations mechanism.

Running migrations

To run all migrations in a server-ce environment:

npm run migrations -- migrate -t 'server-ce'

To run all migrations in a saas environment:

npm run migrations -- migrate -t 'saas'

The -t flag also works with other east commands like rollback, and list.

For other options, or for information on how to roll migrations back, take a look at the East documentation.

Tips

Try to use Mongo directly via the db object instead of using Mongoose models. Migrations will need to run in the future, and model files can change. It's unwise to make the migrations depend on code which might change.

Note: Running east rollback without any arguments rolls back all migrations, which you may well not want.