From e5dca1deb98d2ae4a2c9da110c4b55bb0c3a2dbc Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 21 Jul 2020 22:00:24 +1000 Subject: [PATCH] Force migrations --- app/Console/Commands/PostUpdate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/PostUpdate.php b/app/Console/Commands/PostUpdate.php index 1add8cf765ec..0504c59ec053 100644 --- a/app/Console/Commands/PostUpdate.php +++ b/app/Console/Commands/PostUpdate.php @@ -41,7 +41,7 @@ class PostUpdate extends Command info("running post update"); try { - Artisan::call('migrate'); + Artisan::call('migrate',['--force' => true]); } catch (Exception $e) { \Log::error("I wasn't able to migrate the data."); }