1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-06 01:20:19 +00:00

orm: add test case for uint pk read or create

This commit is contained in:
miraclesu
2016-03-23 21:32:52 +08:00
parent 3be6688cd1
commit eaf38bb096
3 changed files with 31 additions and 1 deletions

View File

@ -392,6 +392,11 @@ type IntegerPk struct {
Value string
}
type UintPk struct {
Id uint32 `orm:"pk"`
Name string
}
var DBARGS = struct {
Driver string
Source string