Skip to content

Commit d7e2c99

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

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
@@ -26,10 +26,10 @@ public function __construct(?Forge $forge = null)
2626
$this->DBGroup = $authConfig->DBGroup;
2727
}
2828

29+
parent::__construct($forge);
30+
2931
$this->tables = $authConfig->tables;
3032
$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)