File tree Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ class Fresh extends Processor
12
12
public function handle (): void
13
13
{
14
14
$ this ->drop ();
15
- $ this ->create ();
16
15
$ this ->migrate ();
17
16
}
18
17
@@ -23,14 +22,6 @@ protected function drop(): void
23
22
}
24
23
}
25
24
26
- protected function create (): void
27
- {
28
- $ this ->runCommand (Names::INSTALL , [
29
- '-- ' . Options::CONNECTION => $ this ->options ->connection ,
30
- '-- ' . Options::FORCE => $ this ->options ->force ,
31
- ]);
32
- }
33
-
34
25
protected function migrate (): void
35
26
{
36
27
$ this ->runCommand (Names::MIGRATE , [
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ protected function ensureRepository(): void
25
25
{
26
26
$ this ->runCommand (Names::INSTALL , [
27
27
'-- ' . Options::CONNECTION => $ this ->options ->connection ,
28
+ '-- ' . Options::FORCE => true ,
28
29
]);
29
30
}
30
31
You can’t perform that action at this time.
0 commit comments