Is there a way to set the initial number of votes (assignedVotesPoints) of my entity (ProposalUser) to let's say 100 when the entity is created using JDL?
entity ProposalUser {
creationDate Instant required,
assignedVotesPoints Long
}
I know I could modify the Spring part to somehting like:
private Long assignedVotesPoints = 100L;
But I would like to do it using JDL.
Thanks to all.