(str string)
| 296 | } |
| 297 | |
| 298 | func quote(str string) string { |
| 299 | return fmt.Sprintf("`%s`", str) |
| 300 | } |
| 301 | |
| 302 | func foreignKeyName(fromTable, fromProperty, toTable, toProperty string) string { |
| 303 | name := fmt.Sprintf("%s_%s_%s_%s", fromTable, fromProperty, toTable, toProperty) |
no outgoing calls
no test coverage detected