2023-04-27 11:29:02 +02:00
|
|
|
#!/command/execlineb -P
|
2023-05-03 08:31:50 +02:00
|
|
|
VERSION=$(php bootstrap/getVersion.php)
|
|
|
|
|
2023-05-03 09:02:20 +02:00
|
|
|
if [ echo "$VERSION" | grep -q "nightly" ]; then
|
2023-05-03 08:31:50 +02:00
|
|
|
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
|