fix for case sensitive email addresses (#517)

This commit is contained in:
Michael Quigley
2024-01-08 10:50:19 -05:00
parent aef603529f
commit 7a0d835e30
5 changed files with 13 additions and 5 deletions

View File

@ -0,0 +1,3 @@
-- +migrate Up
update accounts set email = lower(email);