diff --git a/src/main/java/io/ebeaninternal/server/deploy/parse/DeployInheritInfo.java b/src/main/java/io/ebeaninternal/server/deploy/parse/DeployInheritInfo.java index 595529b8c..a62d84692 100644 --- a/src/main/java/io/ebeaninternal/server/deploy/parse/DeployInheritInfo.java +++ b/src/main/java/io/ebeaninternal/server/deploy/parse/DeployInheritInfo.java @@ -112,7 +112,7 @@ public class DeployInheritInfo { public int getColumnLength(InheritInfo parent) { if (columnLength == 0) { if (parent == null) { - columnLength = 10; + columnLength = 31; } else { columnLength = parent.getColumnLength(); }