* Record describes a struct that can be stored. Example: type Stool struct { Id int `stbl:"id PRIMARY_KEY AUTO_INCREMENT"` Legs int `stbl:"number_of_legs"` Material string `stbl:"material"` Ignored string // will not be stored. } The above links the Stool record to a database
| 170 | |
| 171 | */ |
| 172 | type Record interface{} |
| 173 | |
| 174 | // Internal representation of a field on a database table, and its |
| 175 | // relation to a struct field. |
nothing calls this directly
no outgoing calls
no test coverage detected