(property *schema.Property)
| 742 | } |
| 743 | |
| 744 | func (db *DB) handler(property *schema.Property) propertyHandler { |
| 745 | handler, ok := db.handlers[property.Type] |
| 746 | if ok { |
| 747 | return handler |
| 748 | } |
| 749 | return &defaultHandler{} |
| 750 | } |
| 751 | |
| 752 | func makeColumnID(tableName string, property schema.Property) string { |
| 753 | return fmt.Sprintf("%s__%s", tableName, property.ID) |
no outgoing calls
no test coverage detected