b647026d by slene

orm: add test for unexported struct field

1 parent 568c0c47
...@@ -210,6 +210,8 @@ type User struct { ...@@ -210,6 +210,8 @@ type User struct {
210 Nums int 210 Nums int
211 Langs SliceStringField `orm:"size(100)"` 211 Langs SliceStringField `orm:"size(100)"`
212 Extra JsonField `orm:"type(text)"` 212 Extra JsonField `orm:"type(text)"`
213 unexport bool `orm:"-"`
214 unexport_ bool
213 } 215 }
214 216
215 func (u *User) TableIndex() [][]string { 217 func (u *User) TableIndex() [][]string {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!