more fixes on mysql8

This commit is contained in:
Kononnable 2019-03-09 22:22:07 +01:00
parent b9332736ea
commit f8e39c3304
2 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@
* added option to generate models based on multiple databases(#144)
* fixed generation of ManyToMany relations on junction tables with custom names(#151)
* fixed problems with mysql 8
## 0.3.1
* Fixed npx ussage(#146)

View File

@ -181,6 +181,8 @@ export class MysqlDriver extends AbstractDriver {
colInfo.tsType = "string";
break;
case "geometrycollection":
case "geomcollection":
colInfo.options.type = "geometrycollection";
colInfo.tsType = "string";
break;
default: