Heyas
So we have a table which makes use of mysql's SET datatype to store
the status of a page ('active','inappropriate','optout') with the
status being any combination of the three. This helps us keep the
complexity of our schemas down since we just need one column (rather
than 3 tables) to represent our status. Unfortunatly, Django doesnt
have anything in django.models to handle sets. It does have
CommaSeparatedIntegerField, but it means having to store ints rather
than more descriptive texts.
Does anyone else out there happen to be using mysql SET+django and
have an elegant method for handling the situation?
Thanks!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" 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/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---