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 TestPgSaveSchema(t *testing.T) {
func TestPgGenerateTemplate(t *testing.T) {
db := Open("postgres", "host=127.0.0.1 port=5432 user=test password=test dbname=test sslmode=disable")
defer db.Close()
err := db.GenerateTemplate("plantuml.tmpl", "schema.puml")
err := db.GenerateSchemaTemplate("plantuml.tmpl", "schema.puml")
if err != nil {
fmt.Println(err.Error())
}