Skip to content

Commit 722f641

Browse files
authored
Remove outdated session migration check (#1385)
1 parent e74e1e1 commit 722f641

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

src/Console/InstallCommand.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,10 @@ public function handle()
134134
*/
135135
protected function configureSession()
136136
{
137-
if (! class_exists('CreateSessionsTable')) {
138-
try {
139-
$this->call('session:table');
140-
} catch (Exception $e) {
141-
//
142-
}
137+
try {
138+
$this->call('session:table');
139+
} catch (Exception $e) {
140+
//
143141
}
144142

145143
$this->replaceInFile("'SESSION_DRIVER', 'file'", "'SESSION_DRIVER', 'database'", config_path('session.php'));

0 commit comments

Comments
 (0)