exodus-framework 2.0.993 → 2.0.994
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/services/database.js +2 -4
- package/package.json +1 -1
package/lib/services/database.js
CHANGED
@@ -71,8 +71,7 @@ class DatabaseService extends _app.Service {
|
|
71
71
|
const sequelize = new _sequelize.Sequelize({
|
72
72
|
host,
|
73
73
|
port,
|
74
|
-
dialect
|
75
|
-
// mariadb é um alias para mysql
|
74
|
+
dialect,
|
76
75
|
database,
|
77
76
|
username,
|
78
77
|
password,
|
@@ -103,8 +102,7 @@ class DatabaseService extends _app.Service {
|
|
103
102
|
port: data.port,
|
104
103
|
username: data.username,
|
105
104
|
password: data.password,
|
106
|
-
dialect: data.dialect
|
107
|
-
// mariadb é um alias para mysql,
|
105
|
+
dialect: data.dialect,
|
108
106
|
timezone: '-03:00',
|
109
107
|
pool: _app.Core.settings.getDatabase().service.pool,
|
110
108
|
logging: _app.Core.settings.getDatabase().service.log
|