@Override
public boolean onStartNode(ProjectPath path) {
JpaColumn jpaColumn = (JpaColumn) path.getObject();
if (jpaColumn.getTable() == null) {
throw new JpaProviderException("No default table defined for JpaColumn "
+ jpaColumn.getName());
}
JpaAttribute attribute = (JpaAttribute) path.getObjectParent();
createDbAttribute(jpaColumn.getTable(), jpaColumn, attribute);