doc/md: fix multi driver missing method (#3390)

This commit is contained in:
Doron Cohen
2023-03-15 14:57:14 +02:00
committed by GitHub
parent acc4c5aac6
commit a264ffcac1

View File

@@ -763,6 +763,10 @@ func (d *multiDriver) Close() error {
}
return nil
}
func (d *multiDriver) Dialect() string {
return d.r.Dialect()
}
```
#### How to change the character set and/or collation of a MySQL table?
@@ -862,4 +866,4 @@ func (e *EncodeExtension) Hooks() []gen.Hook {
},
}
}
```
```