Add migration support for mysql

This commit is contained in:
2023-02-21 14:45:59 +01:00
parent d429327ce5
commit 63f8555af7
12 changed files with 136 additions and 24 deletions

View File

@@ -55,7 +55,7 @@ func Connect(driver string, db string) {
}
dbConnInstance = &DBConnection{DB: dbHandle}
checkDBVersion(dbHandle.DB)
checkDBVersion(driver, dbHandle.DB)
})
}