I want to create an entity (called StudentInfo
) that has a one-to-one relationship to the User entity (generated my jhipster). How can I do this using JDL-studio ? Do I just declare a relationship to the User like so :
relationship OneToOne {
StudentInfo{user} to User
}
Will jhipster recognize the "User" in my jdl schema as the User used for authentication or will there be a conflict ?