diff --git a/resources/views/components/finishing.blade.php b/resources/views/components/finishing.blade.php index 0e98bda..db0667a 100644 --- a/resources/views/components/finishing.blade.php +++ b/resources/views/components/finishing.blade.php @@ -107,7 +107,7 @@ use Illuminate\Support\Facades\File; /* Updates button database entries */ Schema::disableForeignKeyConstraints(); - try {Artisan::call('migrate');} catch (exception $e) {} + try {Artisan::call('migrate', ['--force' => true]);} catch (exception $e) {} try {DB::table('buttons')->delete();} catch (exception $e) {} try {DB::table('buttons')->truncate();} catch (exception $e) {} try {Artisan::call('db:seed --class="ButtonSeeder" --force');} catch (exception $e) {}