fix film description length
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
Film {
|
Film {
|
||||||
id: int { @Id @AutoIncremented @ObjectType } ;
|
id: int { @Id @AutoIncremented @ObjectType } ;
|
||||||
title: string { @NotNull } ;
|
title: string { @NotNull } ;
|
||||||
description: string { @NotNull } ;
|
description: string { @NotNull @MaxLen(2000) } ;
|
||||||
duration: int { @NotNull } ;
|
duration: int { @NotNull } ;
|
||||||
image: string { @NotNull } ;
|
image: string { @NotNull } ;
|
||||||
rating: short { } ;
|
rating: short { } ;
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ ENTITY_PKG=de.infinimotion.model.bean
|
|||||||
ProjectVariable.MAVEN_ARTIFACT_ID=model
|
ProjectVariable.MAVEN_ARTIFACT_ID=model
|
||||||
ProjectVariable.MAVEN_GROUP_ID=de.infinimotion
|
ProjectVariable.MAVEN_GROUP_ID=de.infinimotion
|
||||||
ProjectVariable.PROJECT_NAME=infinimodel
|
ProjectVariable.PROJECT_NAME=infinimodel
|
||||||
ProjectVariable.PROJECT_VERSION=0.0.64
|
ProjectVariable.PROJECT_VERSION=0.0.65
|
||||||
ProjectVariable.REST_SERVER_PORT=3000
|
ProjectVariable.REST_SERVER_PORT=3000
|
||||||
ProjectVariable.REST_API_ROOT=/api/v1
|
ProjectVariable.REST_API_ROOT=/api/v1
|
||||||
ProjectVariable.REST_URL_ROOT=http://localhost:3000
|
ProjectVariable.REST_URL_ROOT=http://localhost:3000
|
||||||
|
|||||||
Reference in New Issue
Block a user