You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently all username lookups are case sensitive. We need to:
Lowercase all usernames during lookups
Lowercase all usernames on inserts
Add a database migration that:
For each duplicate username:
1. Move all related networks user_id to the first user row
2. Move all other table user_id columns to references to the first user row
3. Delete all duplicate user rows other than the first
Simply using ilike or SQLites no casing options won't work as each option is different between each database that we support.
The text was updated successfully, but these errors were encountered:
Currently all username lookups are case sensitive. We need to:
1. Move all related networks user_id to the first user row
2. Move all other table user_id columns to references to the first user row
3. Delete all duplicate user rows other than the first
Simply using
ilike
or SQLites no casing options won't work as each option is different between each database that we support.The text was updated successfully, but these errors were encountered: