I updated the django 1.4 application with user profiles to use the 1.5 user model of the user.
I wrote a schema migration for the south, and all the data was successfully imported.
Otherwise, I have a problem with auth_group and auth_permision. Django cannot generate additional tables, but when I want to get permissions or groups, I have this SQL with JOIN for the additional table:
SELECT ... FROM "core_myuser" WHERE "core_myuser"."id" = 61 (8ms) Found 1 matching rows SELECT ... FROM "core_myuser" WHERE "core_myuser"."id" = 363 (1ms) Found 1 matching rows SELECT ... FROM "auth_group" INNER JOIN "core_myuser_groups" ON ("auth_group"."id" = "core_myuser_groups"."group_id") WHERE "core_myuser_groups"."myuser_id" = 363
With internal server error
http://cl.ly/image/0W1G3F2S3f3X
source share