Browse Source

add multiple statements support in db connection

pull/1/head
R4SAS 5 years ago committed by GitHub
parent
commit
6d243a4c54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      config/config.json.example

11
config/config.json.example

@ -6,6 +6,9 @@
"database": "gedb", "database": "gedb",
"host": "127.0.0.1", "host": "127.0.0.1",
"dialect": "mysql", "dialect": "mysql",
"dialectOptions": {
"multipleStatements": true
},
"logging": false "logging": false
}, },
"test": { "test": {
@ -13,7 +16,10 @@
"password": null, "password": null,
"database": "database_test", "database": "database_test",
"host": "127.0.0.1", "host": "127.0.0.1",
"dialect": "mysql" "dialect": "mysql",
"dialectOptions": {
"multipleStatements": true
}
}, },
"production": { "production": {
"username": "geuser", "username": "geuser",
@ -21,6 +27,9 @@
"database": "gedb", "database": "gedb",
"host": "127.0.0.1", "host": "127.0.0.1",
"dialect": "mysql", "dialect": "mysql",
"dialectOptions": {
"multipleStatements": true
},
"logging": false "logging": false
} }
}, },

Loading…
Cancel
Save