Record is the equivalence between concrete database schemas and Go values.
| 22 | |
| 23 | // Record is the equivalence between concrete database schemas and Go values. |
| 24 | type Record interface { |
| 25 | Store(sess Session) Store |
| 26 | } |
| 27 | |
| 28 | // HasConstraints is an interface for records that defines a Constraints method |
| 29 | // that returns the record's own constraints. |
no outgoing calls
no test coverage detected