mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-26 03:38:47 +02:00
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:
parent
3c3af824cf
commit
427b8659c9
2 changed files with 32 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue