chefsmart wrote:
> By the way, right now I'm using a State.objects.get(name__iexact=name)
> in clean_name() method in a form subclass to prevent creation of case-
> insensitive duplicates. Just wondering if there is a built-in or
> better way.
>

Well, in postgresql itself one can make a case insensitive unique
constraint using "functional index" functionality:

create unique index app_state_lower_name_idx on app_state(lower(name));

as per: http://archives.postgresql.org/pgsql-general/2005-09/msg00842.php


I guess django's ORM would need some surgery to make it automagically
generate and manage such constraints though.


--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.


Reply via email to