coolify/docker/prod-ssu/etc/s6-overlay/s6-rc.d/db-migration/up
2023-05-03 09:02:20 +02:00

10 lines
302 B
Plaintext

#!/command/execlineb -P
VERSION=$(php bootstrap/getVersion.php)
if [ echo "$VERSION" | grep -q "nightly" ]; then
php /var/www/html/artisan migrate:fresh --force
php /var/www/html/artisan db:seed --class ProductionSeeder --force
else
php /var/www/html/artisan migrate --force --isolated
fi