| .. | ||
| changelog.md | ||
| readme.md | ||
Database Migrations
This directory contains all the database migration scripts for the server.
What is a migration?
A migration is a script that changes the structure of the database. This can include creating tables, adding columns, or modifying existing columns. A migration script consists of two parts: an "up" script that applies the changes to the database, and a "down" script that undoes the changes.
Guidelines for writing migrations
When writing a migration, keep the following guidelines in mind:
- 
You must name your migration script according to the following convention: <server_version>-<migration_name>.js. For example,v2.14.0-create-users-table.js.- server_versionshould be the version of the server that the migration was created for (this should usually be the next server release).
- migration_nameshould be a short description of the changes that the migration makes.
 
- 
The script should export two async functions: upanddown. Theupfunction should contain the script that applies the changes to the database, and thedownfunction should contain the script that undoes the changes. Theupanddownfunctions should accept a single object parameter with acontextproperty that contains a reference to a SequelizeQueryInterfaceobject. A typical migration script might look like this:async function up({context: queryInterface}) { // Upwards migration script ... } async function down({context: queryInterface}) { // Downward migration script ... } module.exports = {up, down}
- 
Always implement both the upanddownfunctions.
- 
The upanddownfunctions should be idempotent (i.e., they should be safe to run multiple times).
- 
It's your responsibility to make sure that the down migration undoes the changes made by the up migration. 
- 
Log detailed information on every step of the migration. Use Logger.info()andLogger.error().
- 
Test tour migrations thoroughly before committing them. - write unit tests for your migrations (see test/server/migrationsfor an example)
- you can force a server version change by modifying the versionfield inpackage.jsonon your dev environment (but don't forget to revert it back before committing)
 
- write unit tests for your migrations (see 
How migrations are run
Migrations are run automatically when the server starts, when the server detects that the server version has changed. Migrations are always run server version order (from oldest to newest up migrations if the server version increased, and from newest to oldest down migrations if the server version decreased). Only the relevant migrations are run, based on the new and old server versions.
This means that you can switch between server releases without having to worry about running migrations manually. The server will automatically apply the necessary migrations when it starts.