String tableName = entityMeta.config().getQualifiedTableName();
if (configContext.isForceColumnFamilyCreation()) {
log.debug("Force creation of table for entityMeta {}", entityMeta.getClassName());
createTableForEntity(session, entityMeta);
} else {
throw new AchillesInvalidTableException(format("The required table '%s' does not exist for entity '%s'", tableName, entityMeta.getClassName()));
}
}