overleaf/services/web/migrations
Thomas aa9b07d323 Merge pull request #11445 from overleaf/revert-11432-revert-11154-tm-lg-subscription-recurly-cache-name
Re-instate change property name for recurly status cache to recurlyStatus

GitOrigin-RevId: 3b3415d818629676ee44dbc558a6b87469fd1af0
2023-01-27 09:03:58 +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 Merge pull request #10644 from overleaf/em-chunk-store-mongo 2022-11-29 09:04:40 +00:00
20230110140452_rename_recurly_cached_status.js Merge pull request #11445 from overleaf/revert-11432-revert-11154-tm-lg-subscription-recurly-cache-name 2023-01-27 09:03:58 +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.