parent
f3af7bab50
commit
055586cb8f
@ -0,0 +1,38 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
namespace Engelsystem\Migrations;
|
||||||
|
|
||||||
|
use Engelsystem\Database\Migration\Migration;
|
||||||
|
use Illuminate\Database\Query\Grammars\MySqlGrammar;
|
||||||
|
|
||||||
|
class ChangeMysqlDatabaseEncodingToUtf8mb4 extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migration
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
$connection = $this->schema->getConnection();
|
||||||
|
if (!$connection->getQueryGrammar() instanceof MySqlGrammar) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$connection->unprepared('ALTER DATABASE CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci');
|
||||||
|
|
||||||
|
foreach ($connection->getDoctrineSchemaManager()->listTableNames() as $table) {
|
||||||
|
$connection->unprepared(
|
||||||
|
'ALTER TABLE `' . $table . '` CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci'
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migration
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
// As utf8mb4 is a superset of utf8, there is nothing to do here
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue