Update FromMySQL2PostgreSQL.js

This commit is contained in:
Anatoly Khaytovich 2016-03-05 14:09:52 +02:00
parent 411cdcf742
commit 5b130598c5

View file

@ -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;