public HistoryTableEngine(DataSource dataSource, TypeMap typeMap) {
this(dataSource, typeMap, new PrependingNameTranslator<>(new SQLIndexNameTranslator(), TABLE_PREFIX));
}
public HistoryTableEngine(DataSource dataSource, TypeMap typeMap, NameTranslator<Index<?>> indexNameTranslator) {
this(dataSource, typeMap, indexNameTranslator, new SQLIndexFieldNameTranslator());
}