1
0
mirror of https://github.com/flarum/core.git synced 2025-08-05 07:57:46 +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',
'prefix' => $this->prefix,
'strict' => false,
'engine' => null,
'engine' => 'InnoDB',
'prefix_indexes' => true
];
}