fix film description length

This commit is contained in:
2025-10-29 11:34:00 +01:00
parent aa5673bae1
commit de7df5729a
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
Film {
id: int { @Id @AutoIncremented @ObjectType } ;
title: string { @NotNull } ;
description: string { @NotNull } ;
description: string { @NotNull @MaxLen(2000) } ;
duration: int { @NotNull } ;
image: string { @NotNull } ;
rating: short { } ;