From 5ad909292823ef61e181167542ccb9507882c07c Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Thu, 31 Aug 2023 13:30:50 -0700 Subject: [PATCH] migrations: reduce size of old UID field Signed-off-by: Varun Patil --- lib/Migration/Version000000Date20220812163631.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Migration/Version000000Date20220812163631.php b/lib/Migration/Version000000Date20220812163631.php index e3404e40..1a5e3682 100644 --- a/lib/Migration/Version000000Date20220812163631.php +++ b/lib/Migration/Version000000Date20220812163631.php @@ -47,8 +47,9 @@ class Version000000Date20220812163631 extends SimpleMigrationStep 'notnull' => true, ]); $table->addColumn('uid', 'string', [ + // dropped in Version200000Date20220924015634 'notnull' => true, - 'length' => 200, + 'length' => 64, ]); $table->addColumn('datetaken', Types::DATETIME, [ 'notnull' => false,