mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 02:00:51 -04:00
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:
parent
e20548731f
commit
02e78231f9
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in a new issue