mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-18 10:41:56 +10:00
- normalize username and email fields to lowercase, resolves #1740
- add autoComplete attributes to auth flow for easier sign in/sign up
This commit is contained in:
@ -0,0 +1,6 @@
|
||||
-- This migration normalizes the username and email fields for all users,
|
||||
-- ensuring that they are stored in lowercase.
|
||||
UPDATE "User"
|
||||
SET username = LOWER(username),
|
||||
email = LOWER(email);
|
||||
|
||||
Reference in New Issue
Block a user