diff options
author | Colin Okay <colin@cicadas.surf> | 2022-11-21 07:33:23 -0600 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-11-21 07:33:23 -0600 |
commit | ccac6a95bb894edbfd8c21f55d83a4f077df7f4c (patch) | |
tree | dc6dca4cb0cc48779144a4ab039a17d83a184b62 /model.lisp | |
parent | 464d127112b7e5c38db5c75b2c8f8fdea41f3f77 (diff) |
Modify: index reader for user name is case insensitive
Diffstat (limited to 'model.lisp')
-rw-r--r-- | model.lisp | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -12,7 +12,8 @@ (defclass/bknr user (keyed) ((name :with :index-type string-unique-index - :index-reader user-with-name) + :index-reader user-with-name + :index-initargs (:test 'equalp)) (playlists :with :std (list)) (pwsalt :with :std (nuid)) (pwhash :with))) |