In the RemovingTheMagic wiki page, the MySQL for upgrading the database 
has these two lines:

ALTER TABLE django_content_type rename package to app_label;
ALTER TABLE django_content_type rename python_module_name to model;

  In MySQL 4.1.14 (and in the docs for MySQL 5.0), the commands should be:

ALTER TABLE django_content_type change package app_label varchar(20);
ALTER TABLE django_content_type change python_module_name model varchar(50);

  Can I edit the Wiki and add these as an alternative ?

  Thanks,
  Graham.

--~--~---------~--~----~------------~-------~--~----~
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