We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If primitive column has @column(nullabe=false) then it is not necessary to add @NotNull, because it is always non nullable.
@Column(name = "ACTIVE", nullable = false) private boolean active;
Right now it is being reported as an error.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If primitive column has @column(nullabe=false) then it is not necessary to add @NotNull, because it is always non nullable.
Right now it is being reported as an error.
The text was updated successfully, but these errors were encountered: