We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e653ce commit 4e1568eCopy full SHA for 4e1568e
src/Database/Migrations/2020-12-28-223112_create_auth_tables.php
@@ -19,8 +19,6 @@ class CreateAuthTables extends Migration
19
20
public function __construct(?Forge $forge = null)
21
{
22
- parent::__construct($forge);
23
-
24
/** @var Auth $authConfig */
25
$authConfig = config('Auth');
26
@@ -30,6 +28,8 @@ public function __construct(?Forge $forge = null)
30
28
31
29
$this->tables = $authConfig->tables;
32
$this->attributes = ($this->db->getPlatform() === 'MySQLi') ? ['ENGINE' => 'InnoDB'] : [];
+
+ parent::__construct($forge);
33
}
34
35
public function up(): void
0 commit comments