diff --git a/migration/fmtp/FromMySQL2PostgreSQL.js b/migration/fmtp/FromMySQL2PostgreSQL.js index 8682864..ead791f 100644 --- a/migration/fmtp/FromMySQL2PostgreSQL.js +++ b/migration/fmtp/FromMySQL2PostgreSQL.js @@ -62,7 +62,6 @@ FromMySQL2PostgreSQL.prototype.boot = function(self) { self._logsDirPath = self._config.logsDirPath; self._dataTypesMapAddr = __dirname + '/DataTypesMap.json'; self._allLogsPath = self._logsDirPath + '/all.log'; - self._reportOnlyPath = self._logsDirPath + '/report-only.log'; self._errorLogsPath = self._logsDirPath + '/errors-only.log'; self._notCreatedViewsPath = self._logsDirPath + '/not_created_views'; self._copyOnly = self._config.copy_only; @@ -74,7 +73,6 @@ FromMySQL2PostgreSQL.prototype.boot = function(self) { self._dataChunkSize = self._dataChunkSize < 1 ? 1 : self._dataChunkSize; self._0777 = '0777'; self._mysql = null; - self._pgsql = null; self._tablesToMigrate = []; self._viewsToMigrate = []; self._tablesCnt = 0;