3.4 KiB
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_version
should be the version of the server that the migration was created for (this should usually be the next server release).migration_name
should be a short description of the changes that the migration makes.
-
The script should export two async functions:
up
anddown
. Theup
function should contain the script that applies the changes to the database, and thedown
function should contain the script that undoes the changes. Theup
anddown
functions should accept a single object parameter with acontext
property that contains a reference to a SequelizeQueryInterface
object, and a Logger object for logging. A typical migration script might look like this:async function up({ context: { queryInterface, logger } }) { // Upwards migration script logger.info('migrating ...'); ... } async function down({ context: { queryInterface, logger } }) { // Downward migration script logger.info('reverting ...'); ... } module.exports = {up, down}
-
Always implement both the
up
anddown
functions. -
The
up
anddown
functions should be idempotent (i.e., they should be safe to run multiple times). -
Prefer using only
queryInterface
andlogger
parameters, thesequelize
module, and node.js built-in modules in your migration scripts. You can require other modules, but be aware that they might not be available or change from they ones you tested with. -
It's your responsibility to make sure that the down migration reverts 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/migrations
for an example) - you can force a server version change by modifying the
version
field inpackage.json
on 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 in 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.