Database Migrations
After making any changes in the server/src/schema, a database migration need to run in order to register the changes in the database. Follow the steps below to create a new migration.
- Run the command
pnpm run migrations:generate <migration-name>
- Check if the migration file makes sense.
- Move the migration file to folder
./server/src/schema/migrationsin your code editor.
The server will automatically detect *.ts file changes and restart. Part of the server start-up process includes running any new migrations, so it will be applied immediately.
Reverting a Migration
If you need to undo the most recently applied migration—for example, when developing or testing on schema changes—run:
pnpm run migrations:revert
This command rolls back the latest migration and brings the database schema back to its previous state.