mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Add mapping for a broken varchar type. Fixes #14247
This commit is contained in:
parent
ac13cf04ba
commit
090db867d5
1 changed files with 1 additions and 0 deletions
|
|
@ -58,6 +58,7 @@ class SQLiteMigrator extends Migrator {
|
|||
$platform = $connection->getDatabasePlatform();
|
||||
$platform->registerDoctrineTypeMapping('tinyint unsigned', 'integer');
|
||||
$platform->registerDoctrineTypeMapping('smallint unsigned', 'integer');
|
||||
$platform->registerDoctrineTypeMapping('varchar ', 'string');
|
||||
|
||||
return parent::getDiff($targetSchema, $connection);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue