On Wed, 2006-04-19 at 09:10 +, favo wrote:
> on this section:
> http://code.djangoproject.com/wiki/RemovingTheMagic#Databasechangesyoullneedtomake
>
> for postgresql part,
>
> 1)correct:
> ALTER TABLE django_content_type DROP CONSTRAINT "$1";
> should be -->
> ALTER TABLE django_content_type
and there's also some index with wrong name, which is not really a
problem.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To post to this group, send email to django-developers@googlegro
on this section:
http://code.djangoproject.com/wiki/RemovingTheMagic#Databasechangesyoullneedtomake
for postgresql part,
1)correct:
ALTER TABLE django_content_type DROP CONSTRAINT "$1";
should be -->
ALTER TABLE django_content_type DROP CONSTRAINT
"content_types_package_fkey";
2) lack :
ALTER T