(tableName string, property schema.Property)
| 758 | } |
| 759 | |
| 760 | func makeAliasTableName(tableName string, property schema.Property) string { |
| 761 | return fmt.Sprintf("%s__%s", tableName, property.RelationProperty) |
| 762 | } |
| 763 | |
| 764 | // MakeColumns generates an array that has Gohan style column names |
| 765 | func MakeColumns(s *schema.Schema, tableName string, fields []string, join bool) []string { |
no outgoing calls
no test coverage detected