I get this error when trying to save data in a model in db.
@Entity
public class User extends Model {
@Required
public String name;
@Email
public String email;
@Required @MaxLength(value=10)
public String username;
@Required @MinLength(value=4)
public String password;
@Id
public int id;
}
This is my class.
This is an error when I try to save the model in db.

I will take care of any efforts to help! many thanks.
EDIT: table structure here

source
share