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
I'm using Spring Boot 3 with hibernate 6. For example if I add these code
@Check(constraints = "estimated_amount >= 0") public class MasterExpenseEstimation extends AutoIncrementedIdWithSoftDelete { @NotNull @ManyToOne(targetEntity = Category.class, optional = false, fetch = FetchType.LAZY) @JoinColumn(name = "category_id", columnDefinition = "BIGINT UNSIGNED", nullable = false, unique = true) private Category category; @Min(0) @NotNull @Column(name = "estimated_amount", nullable = false) private Integer estimatedAmount; }
The check constraints is not added when i run ./mvnw liquibase:diff
./mvnw liquibase:diff
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm using Spring Boot 3 with hibernate 6.
For example if I add these code
The check constraints is not added when i run
./mvnw liquibase:diff
The text was updated successfully, but these errors were encountered: