Ticket #8583: comments_upgrade_sql.diff
File comments_upgrade_sql.diff, 663 bytes (added by , 16 years ago) |
---|
-
docs/ref/contrib/comments/upgrade.txt
54 54 UPDATE django_comments SET user_name = ( 55 55 SELECT username FROM auth_user 56 56 WHERE django_comments.user_id = auth_user.id 57 ) ;57 ) WHERE django_comments.user_id is not NULL; 58 58 UPDATE django_comments SET user_email = ( 59 59 SELECT email FROM auth_user 60 60 WHERE django_comments.user_id = auth_user.id 61 ) ;61 ) WHERE django_comments.user_id is not NULL; 62 62 63 63 COMMIT;