Skip to content

Commit 4709682

Browse files
committed
fix(scim): match user_name collate expression to migrations
1 parent c31067c commit 4709682

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

internal/api/scim/user_repository.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var ErrNotFound = errors.New("scim: resource not found")
1919

2020
var userSortColumns = map[string]string{
2121
"id": "id",
22-
"username": `lower(user_name) collate "C"`,
22+
"username": `lower(user_name collate "C")`,
2323
"meta.created": "created_at",
2424
"meta.lastmodified": "updated_at",
2525
}

0 commit comments

Comments
 (0)