Re: Case-insensitive non-deterministic collation

2023-08-06 Thread Mike Dewhirst
On 5/08/2023 7:58 pm, Chetan Ganji wrote: Hi Mike RE: The primary use case is to establish case-insensitivity when checking names - including usernames, company names and abbreviations/acronyms. I dont know anything about db_collation. Me neither Below 4 lookups should solve most common

Error regarding Deployment on Vercel

2023-08-06 Thread krishna soni
recently I have deployed a project on vercel "https://blogstar-web.vercel.app/"; giving me error 404 not found can any one tell why this error is coming ??? I have searched on google regarding this but not found helpful -- You received this message because you are subscribed to the Google

Re: Case-insensitive non-deterministic collation

2023-08-06 Thread Chetan Ganji
Check this out. https://gist.github.com/hleroy/2f3c6b00f284180da10ed9d20bf9240a # According to Django documentation, it’s preferable to use non-deterministic collations # instead of the citext extension for Postgres > 12. # Example migation to create the case insensitive collation class Migration

Re: Can not send mail

2023-08-06 Thread Kerem Üllenoğlu
Hey, I changed `EMAIL_PASSWORD` to `EMAIL_HOST_PASSWORD` and added the `DEFAULT_FROM_EMAIL`, now it works. See my Stack Overflow question . I don't understand why the server said "We do not relay gmail.com"

Re: Case-insensitive non-deterministic collation

2023-08-06 Thread Mithilesh Rawani
Any help visit www.bansloi.com this is django website On Sun, 6 Aug 2023, 4:48 pm Chetan Ganji, wrote: > Check this out. > https://gist.github.com/hleroy/2f3c6b00f284180da10ed9d20bf9240a > > # According to Django documentation, it’s preferable to use > non-deterministic collations > # instead of

Re: Error regarding Deployment on Vercel

2023-08-06 Thread Mithilesh Rawani
Yes it's easy On Sun, 6 Aug 2023, 4:36 pm krishna soni, wrote: > recently I have deployed a project on vercel " > https://blogstar-web.vercel.app/"; > giving me error 404 not found can any one tell why this error is coming > ??? I have searched on google regarding this but not found helpful

Re: Case-insensitive non-deterministic collation

2023-08-06 Thread Mike Dewhirst
On 6/08/2023 9:17 pm, Chetan Ganji wrote: Thanks Chetan I have seen that 'icu' and 'und-whatever...' in various places on the web - so it seems to be spreading - but I haven't had the brainspace to understand it yet. I'll try an experiment with provider='C' and locale='C' because that is ho