aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib/Migration/Version1008Date20181105104826.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dav/lib/Migration/Version1008Date20181105104826.php')
-rw-r--r--apps/dav/lib/Migration/Version1008Date20181105104826.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/dav/lib/Migration/Version1008Date20181105104826.php b/apps/dav/lib/Migration/Version1008Date20181105104826.php
index cc80c6552c4..93a5163e6f0 100644
--- a/apps/dav/lib/Migration/Version1008Date20181105104826.php
+++ b/apps/dav/lib/Migration/Version1008Date20181105104826.php
@@ -27,7 +27,7 @@ declare(strict_types=1);
namespace OCA\DAV\Migration;
use Closure;
-use Doctrine\DBAL\Types\Type;
+use Doctrine\DBAL\Types\Types;
use OCP\DB\ISchemaWrapper;
use OCP\IDBConnection;
use OCP\Migration\IOutput;
@@ -58,7 +58,7 @@ class Version1008Date20181105104826 extends SimpleMigrationStep {
$schema = $schemaClosure();
$table = $schema->getTable('calendarsubscriptions');
- $table->addColumn('source_copy', Type::TEXT, [
+ $table->addColumn('source_copy', Types::TEXT, [
'notnull' => false,
'length' => null,
]);