In the RemovingTheMagic wiki page the SQL to upgrade 
django_content_type is given as:

UPDATE django_content_type SET name='group' WHERE model='group';
UPDATE django_content_type SET name='user' WHERE model='user';

  The 'group' and 'user' should be plural. stuka fixes this to:

UPDATE django_content_type SET name='group' WHERE module='groups';
UPDATE django_content_type SET name='user' WHERE module='users';

  but I believe that has a typo in that 'module' should be 'model'.

  So the SQL is actually:

UPDATE django_content_type SET name='group' WHERE model='groups';
UPDATE django_content_type SET name='user' WHERE model='users';

  Permission to fix it on the Wiki ?

  Thanks,
  Graham.

PS: I've just finished upgrading my project to MR. Congratulations and 
thanks to all involved, it is a much nicer django now.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to