bastian 15fc29ec2e
Some checks failed
ci/woodpecker/manual/woodpecker Pipeline failed
ci/woodpecker/push/woodpecker Pipeline was successful
Correct directory for migrations execution
2025-02-14 19:36:31 +01:00

9 lines
253 B
Bash

#!/bin/bash
echo -e "\033[36;01m+ Executing migrations\033[0m"
/var/www/cgk-streaming-roster/bin/console doctrine:migrations:migrate --no-interaction
if [ $? -ne 0 ]; then
echo -e "\033[0;31mAn error occurred when executing migrations.\033[0m"
fi