Graham King wrote: > 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 ?
Those are not alternatives since the ALTER TABLE .. RENAME is for tables only :) You got my vote in correcting these two lines there, but need to make sure it's going for the other DBMSes too.. -Geert -- Geert Vanderkelen http://www.some-abstract-type-shit.com --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---