Added MySQL migrations required by the doctrine upgrades

The new ORM versions, do not have anymore column comments, so these got removed
This commit is contained in:
Jan Böhmer 2024-06-10 21:43:25 +02:00
parent 3c3af824cf
commit 427b8659c9
2 changed files with 32 additions and 4 deletions

View file

@ -37,7 +37,7 @@ class TinyIntType extends Type
{
//MySQL and SQLite know the TINYINT type directly
if ($platform instanceof AbstractMySQLPlatform || $platform instanceof SQLitePlatform) {
return 'TINYINT';
return 'TINYINT(1)';
}
//For other platforms, we use the smallest integer type available