Fix Types namespace for version 20

Use Doctrine\DBAL\Types\Types instead of OCP\DB\Types

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2022-01-17 10:34:52 +01:00
parent e20548731f
commit 02e78231f9
No known key found for this signature in database
GPG key ID: A3E2F658B28C760A
2 changed files with 2 additions and 2 deletions

View file

@ -27,10 +27,10 @@ declare(strict_types=1);
namespace OCA\User_LDAP\Migration;
use Closure;
use Doctrine\DBAL\Types\Types;
use OCP\DB\Exception;
use OCP\DB\ISchemaWrapper;
use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\DB\Types;
use OCP\IDBConnection;
use OCP\Migration\IOutput;
use OCP\Migration\SimpleMigrationStep;

View file

@ -27,8 +27,8 @@ declare(strict_types=1);
namespace OCA\User_LDAP\Migration;
use Closure;
use Doctrine\DBAL\Types\Types;
use OCP\DB\ISchemaWrapper;
use OCP\DB\Types;
use OCP\Migration\IOutput;
class Version1130Date20220110154718 extends GroupMappingMigration {