Is there a way within the sequel syntax to create an index that is
case insensitive?

I postgresql I do this in my raw DDL...

create unique index idx_user_tbl_contact_email on user_tbl
( lower(contact_email) );

Notice the lower(contact_email), this allows me to do case insenstive
indexed assisted searches if I pas in a lowercased email.

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"sequel-talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/sequel-talk?hl=en.

Reply via email to