summaryrefslogtreecommitdiffstats
path: root/core/Command
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2021-01-12 10:20:12 +0100
committerChristoph Wurst <christoph@winzerhof-wurst.at>2021-01-12 14:09:13 +0100
commitc1d4f8161bf46dd6d4a9092c6c73934225c8550b (patch)
tree45522cc5277f23edc9762dd83848badc20a9f850 /core/Command
parentd4e6463eb27c44d2aad5befe1c687934ded5164e (diff)
downloadnextcloud-server-c1d4f8161bf46dd6d4a9092c6c73934225c8550b.tar.gz
nextcloud-server-c1d4f8161bf46dd6d4a9092c6c73934225c8550b.zip
Migrate internal classes to the OCP db col types
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/Command')
-rw-r--r--core/Command/Db/ConvertFilecacheBigInt.php2
-rw-r--r--core/Command/Db/ConvertType.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/Command/Db/ConvertFilecacheBigInt.php b/core/Command/Db/ConvertFilecacheBigInt.php
index 6001de6fb9e..1f71a50cf6b 100644
--- a/core/Command/Db/ConvertFilecacheBigInt.php
+++ b/core/Command/Db/ConvertFilecacheBigInt.php
@@ -33,7 +33,7 @@ namespace OC\Core\Command\Db;
use Doctrine\DBAL\Platforms\SqlitePlatform;
use Doctrine\DBAL\Types\Type;
-use Doctrine\DBAL\Types\Types;
+use OCP\DB\Types;
use OC\DB\Connection;
use OC\DB\SchemaWrapper;
use Symfony\Component\Console\Command\Command;
diff --git a/core/Command/Db/ConvertType.php b/core/Command/Db/ConvertType.php
index 32b7492d967..6e20acf254b 100644
--- a/core/Command/Db/ConvertType.php
+++ b/core/Command/Db/ConvertType.php
@@ -36,7 +36,7 @@ namespace OC\Core\Command\Db;
use Doctrine\DBAL\Exception;
use Doctrine\DBAL\Schema\AbstractAsset;
use Doctrine\DBAL\Schema\Table;
-use Doctrine\DBAL\Types\Types;
+use OCP\DB\Types;
use OC\DB\Connection;
use OC\DB\ConnectionFactory;
use OC\DB\MigrationService;