Merge branch 'master' of github.com:ebean-orm/ebean

This commit is contained in:
Rob Bygrave
2018-01-31 11:57:10 +13:00
@@ -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();
}