1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-23 03:24:13 +00:00

Merge pull request #3433 from DennisMao/FixOrmDescriptionTag

Fix Issue #3337
This commit is contained in:
astaxie 2018-12-18 09:20:36 +08:00 committed by GitHub
commit f867583256
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -301,7 +301,7 @@ checkType:
fi.sf = sf
fi.fullName = mi.fullName + mName + "." + sf.Name
fi.description = sf.Tag.Get("description")
fi.description = tags["description"]
fi.null = attrs["null"]
fi.index = attrs["index"]
fi.auto = attrs["auto"]

View File

@ -44,6 +44,7 @@ var supportTag = map[string]int{
"decimals": 2,
"on_delete": 2,
"type": 2,
"description": 2,
}
// get reflect.Type name with package path.