Increase maximum index size, closes #5426

This commit is contained in:
Tom Moor
2023-06-19 12:54:04 -04:00
parent b3c08fdb48
commit f76f2e61d8

View File

@@ -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;