Commit 3863c6c8 authored by liaozan's avatar liaozan 🏀

Bug fixed for table constraint check

parent acd5bcb8
......@@ -104,7 +104,7 @@ public class TableConstraintCheckerBean implements SmartInitializingSingleton, B
return;
}
if (entityClass.isAssignableFrom(IgnoreConstraintCheck.class)) {
if (entityClass.isAnnotationPresent(IgnoreConstraintCheck.class)) {
return;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment