Server database is not updated
The Server database is not updated warning means that the new Passwork version is already deployed, but the database structure has not been brought to the new version:

Run the command depending on the installation type and OS:
- DEB
- RPM
- Docker
- PowerShell
sudo -u www-data bash -c 'cd /var/www && php -d memory_limit=-1 ./bin/console app:update'
sudo -u apache bash -c 'cd /var/www && php -d memory_limit=-1 ./bin/console app:update'
docker compose exec -T php-fpm sh -c 'cd /server/www && php -d memory_limit=-1 bin/console app:update'
cd "$env:SystemDrive\inetpub\wwwroot\passwork"
php -d "memory_limit=-1" .\bin\console app:update
info
The commands use the default installation paths. If Passwork is installed in a different directory, specify the actual path in the command.