more fixes on mysql8
This commit is contained in:
parent
b9332736ea
commit
f8e39c3304
@ -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)
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user