From 541e7c19f60c12dac3e25e8fe7d0dcfc944faa00 Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Sat, 27 Apr 2019 23:03:24 +0200 Subject: [PATCH] Pass type object instance instead of identifier Signed-off-by: Daniel Kesselberg --- core/Migrations/Version16000Date20190427105638.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/Migrations/Version16000Date20190427105638.php b/core/Migrations/Version16000Date20190427105638.php index 6ba83a56d1..2a6b4d8290 100644 --- a/core/Migrations/Version16000Date20190427105638.php +++ b/core/Migrations/Version16000Date20190427105638.php @@ -57,6 +57,7 @@ class Version16000Date20190427105638 extends SimpleMigrationStep { * @param array $options * @return null|ISchemaWrapper * @throws \Doctrine\DBAL\Schema\SchemaException + * @throws \Doctrine\DBAL\DBALException */ public function changeSchema(IOutput $output, Closure $schemaClosure, array $options) { /** @var ISchemaWrapper $schema */ @@ -66,7 +67,7 @@ class Version16000Date20190427105638 extends SimpleMigrationStep { $table = $schema->getTable('collres_accesscache'); $table->changeColumn('access', [ - 'type' => Type::BOOLEAN, + 'type' => Type::getType(Type::BOOLEAN), 'notnull' => true, 'default' => false, ]);