From 0975cc5dd9c4b56144003ad043ec7ac9600e4f4f Mon Sep 17 00:00:00 2001 From: noor Date: Fri, 24 Mar 2023 11:18:47 +0530 Subject: [PATCH] seeder fix --- routes/console.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/console.php b/routes/console.php index 19dce65bc..18df468b5 100644 --- a/routes/console.php +++ b/routes/console.php @@ -68,6 +68,6 @@ Artisan::command('install:seed', function () { } \DB::table($name)->truncate(); } - $this->call('db:seed', ['--force' => true]); + (new \App\Http\Controllers\Update\SyncFaveoToLatestVersion())->sync(); $this->info('seeded successfully'); })->purpose('Seeding for install');