/**
  * @param string $tableName
  */
 public function resetTable($tableName)
 {
     parent::resetTable($tableName);
     $version_table = "{$tableName}_version";
     if ($this->dbConnection->schema->getTable($version_table)) {
         $this->truncateTable($version_table);
     }
 }