From f76f2e61d852e119550f3edacdeebe42458c10f6 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Mon, 19 Jun 2023 12:54:04 -0400 Subject: [PATCH] Increase maximum index size, closes #5426 --- server/models/Collection.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/models/Collection.ts b/server/models/Collection.ts index 418540cbe..18cc68f53 100644 --- a/server/models/Collection.ts +++ b/server/models/Collection.ts @@ -167,8 +167,8 @@ class Collection extends ParanoidModel { color: string | null; @Length({ - max: 50, - msg: `index must be 50 characters or less`, + max: 100, + msg: `index must be 100 characters or less`, }) @Column index: string | null;