From 22d674be66e97e87fd5577cabaf01412a8d011b5 Mon Sep 17 00:00:00 2001 From: skjnldsv Date: Tue, 29 Oct 2024 11:21:56 +0100 Subject: fix(core): use Types::STRING in etag systemtag migration Signed-off-by: skjnldsv --- core/Migrations/Version31000Date20241018063111.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/Migrations/Version31000Date20241018063111.php b/core/Migrations/Version31000Date20241018063111.php index b9326f388e5..eefda981dcb 100644 --- a/core/Migrations/Version31000Date20241018063111.php +++ b/core/Migrations/Version31000Date20241018063111.php @@ -10,6 +10,7 @@ declare(strict_types=1); namespace OC\Core\Migrations; use Closure; +use Doctrine\DBAL\Types\Types; use OCP\DB\ISchemaWrapper; use OCP\Migration\IOutput; use OCP\Migration\SimpleMigrationStep; @@ -41,7 +42,7 @@ class Version31000Date20241018063111 extends SimpleMigrationStep { $table = $schema->getTable('systemtag'); if (!$table->hasColumn('etag')) { - $table->addColumn('etag', 'string', [ + $table->addColumn('etag', Types::STRING, [ 'notnull' => false, 'length' => 32, ]); -- cgit v1.2.3