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.
@@ -71,8 +71,7 @@ class DatabaseService extends _app.Service {
71
71
  const sequelize = new _sequelize.Sequelize({
72
72
  host,
73
73
  port,
74
- dialect: dialect == 'mariadb' ? 'mysql' : 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 == 'mariadb' ? 'mysql' : 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "exodus-framework",
3
- "version": "2.0.993",
3
+ "version": "2.0.994",
4
4
  "description": "Exodus Framework",
5
5
  "author": "jhownpaixao",
6
6
  "license": "ISC",