We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 12d1611 + 51334d3 commit c674f8fCopy full SHA for c674f8f
1 file changed
src/Installer/Console/Install.php
@@ -30,6 +30,7 @@
30
use Illuminate\Console\Command;
31
use Illuminate\Foundation\Bus\DispatchesJobs;
32
use Symfony\Component\Console\Input\InputOption;
33
+use Illuminate\Support\Facades\DB;
34
35
/**
36
* Class Install
@@ -113,6 +114,8 @@ function () use ($manager) {
113
114
}
115
)
116
);
117
+
118
+ DB::purge('mysql');
119
120
$this->dispatchNow(new LoadModuleSeeders($installers));
121
$this->dispatchNow(new LoadExtensionSeeders($installers));
0 commit comments