Merge branch 'main' into develop

pull/67/head
mokaddem 2021-06-29 10:57:21 +02:00
commit 5d1f8bf71a
1 changed files with 39 additions and 36 deletions

View File

@ -17,6 +17,8 @@ class LocalTools extends AbstractMigration
*/
public function change()
{
$exists = $this->hasTable('local_tools');
if (!$exists) {
$table = $this->table('local_tools', [
'signed' => false,
'collation' => 'utf8mb4_unicode_ci',
@ -58,5 +60,6 @@ class LocalTools extends AbstractMigration
$table->create();
}
}
}