mirror of
https://github.com/immich-app/immich.git
synced 2026-02-08 18:58:42 +03:00
* Add AssetJobStatus * fentity * Add jobStatus field to AssetEntity * Fix the migration doc paths * Filter on facesRecognizedAt * Set facesRecognizedAt field * Test for facesRecognizedAt * Done testing * Adjust FK properties * Add tests for WithoutProperty.FACES * chore: non-nullable --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
638 B
638 B
Database Migrations
After making any changes in the server/src/infra/database/entities, 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
npm run typeorm:migrations:generate ./src/infra/<migration-name>
- Check if the migration file makes sense.
- Move the migration file to folder
./server/src/infra/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.