added unsigned int to mysql types

This commit is contained in:
ycc
2023-07-04 09:46:33 +02:00
parent 5ce4f94524
commit 7a4c6eb35d
3 changed files with 7 additions and 5 deletions

View File

@@ -217,7 +217,7 @@ func TestMySaveSchema(t *testing.T) {
func TestMyGenerateTemplate(t *testing.T) {
db := Open("mysql", "test:test@tcp(127.0.0.1:3306)/test?parseTime=true")
defer db.Close()
err := db.GenerateTemplate("plantuml.tmpl", "schema.puml")
err := db.GenerateSchemaTemplate("plantuml.tmpl", "schema.puml")
if err != nil {
fmt.Println(err.Error())
}