Skip to content

Commit 4e1568e

Browse files
committed
parent::__construct() moved after ->DBGroup assignment.
1 parent 6e653ce commit 4e1568e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Database/Migrations/2020-12-28-223112_create_auth_tables.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ class CreateAuthTables extends Migration
1919

2020
public function __construct(?Forge $forge = null)
2121
{
22-
parent::__construct($forge);
23-
2422
/** @var Auth $authConfig */
2523
$authConfig = config('Auth');
2624

@@ -30,6 +28,8 @@ public function __construct(?Forge $forge = null)
3028

3129
$this->tables = $authConfig->tables;
3230
$this->attributes = ($this->db->getPlatform() === 'MySQLi') ? ['ENGINE' => 'InnoDB'] : [];
31+
32+
parent::__construct($forge);
3333
}
3434

3535
public function up(): void

0 commit comments

Comments
 (0)