From a195559c4b9c45feafb6cefa73362b7e5c773b9d Mon Sep 17 00:00:00 2001 From: arifal Date: Thu, 20 Mar 2025 20:15:30 +0700 Subject: [PATCH] fix running syntax seeder on automation deploy syntax --- deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index f1f0c1d..1af1a7c 100755 --- a/deploy.sh +++ b/deploy.sh @@ -20,7 +20,7 @@ echo "🗄️ Running migrations..." php artisan migrate --force echo "Running seeders..." -php artisan db:seed +php artisan db:seed --force echo "⚡ Optimizing application..." php artisan optimize:clear