- #69 - this may be a problematic change for bigger tables as indexes have to be built from the scratch when added. Alternatively indexes can be added manually in advance with SQL:
ALTER TABLEjh_import_history
ADD INDEXJH_IMPORT_HISTORY_IMPORT_NAME
(import_name
)
ALTER TABLEjh_import_history_item_log
ADD INDEXJH_IMPORT_HISTORY_ITEM_LOG_ID_VALUE
(id_value
) - #68