Fix ambiguous column when sorting media_files by created_at.

Fix #3006
This commit is contained in:
Deluan 2024-05-08 08:22:53 -04:00
parent dd4374cec6
commit 62cc8a2d4b
5 changed files with 83 additions and 10 deletions

View file

@ -51,6 +51,14 @@ func toSnakeCase(str string) string {
return strings.ToLower(snake)
}
var matchUnderscore = regexp.MustCompile("_([A-Za-z])")
func toCamelCase(str string) string {
return matchUnderscore.ReplaceAllStringFunc(str, func(s string) string {
return strings.ToUpper(strings.Replace(s, "_", "", -1))
})
}
func exists(subTable string, cond squirrel.Sqlizer) existsCond {
return existsCond{subTable: subTable, cond: cond, not: false}
}