1
0
mirror of https://github.com/flarum/core.git synced 2025-08-06 08:27:42 +02:00

fix: MyISAM tables for extensions during installation

This commit is contained in:
Daniël Klabbers
2022-07-23 23:53:14 +02:00
parent f128190f14
commit 75aaef7d76

View File

@@ -47,7 +47,7 @@ class DatabaseConfig implements Arrayable
'collation' => 'utf8mb4_unicode_ci', 'collation' => 'utf8mb4_unicode_ci',
'prefix' => $this->prefix, 'prefix' => $this->prefix,
'strict' => false, 'strict' => false,
'engine' => null, 'engine' => 'InnoDB',
'prefix_indexes' => true 'prefix_indexes' => true
]; ];
} }