1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 13:19:43 +02:00

New schema implementation

This commit is contained in:
Harvey Kandola 2018-09-17 18:00:00 +01:00
parent 4f525bd634
commit 9c2594b1b4
4 changed files with 171 additions and 3 deletions

View file

@ -84,6 +84,11 @@ func (p MySQLProvider) Type() env.StoreType {
return env.StoreTypeMySQL
}
// TypeVariant returns databse flavor
func (p MySQLProvider) TypeVariant() string {
return p.Variant
}
// DriverName returns database/sql driver name.
func (p MySQLProvider) DriverName() string {
return "mysql"