Add multiple genres to Artists

This commit is contained in:
Deluan 2021-07-16 18:18:22 -04:00 committed by Deluan Quintão
parent 1d8607ef6a
commit b56e034ce3
6 changed files with 76 additions and 22 deletions

View file

@ -67,3 +67,9 @@ func booleanFilter(field string, value interface{}) Sqlizer {
func fullTextFilter(field string, value interface{}) Sqlizer {
return fullTextExpr(value.(string))
}
func idFilter(tableName string) func(string, interface{}) Sqlizer {
return func(field string, value interface{}) Sqlizer {
return Eq{tableName + ".id": value}
}
}