Fixed an error in comment upgrade SQL.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8595 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
91ca961ba6
commit
52c3c3a349
|
@ -44,11 +44,11 @@ The data models have changed, as have the table names. To transfer your data int
|
||||||
FROM comments_freecomment;
|
FROM comments_freecomment;
|
||||||
|
|
||||||
INSERT INTO django_comments
|
INSERT INTO django_comments
|
||||||
(content_type_id, object_pk, site_id, user_id, comment, submit_date,
|
(content_type_id, object_pk, site_id, user_id, user_name, user_email,
|
||||||
ip_address, is_public, is_removed)
|
user_url, comment, submit_date, ip_address, is_public, is_removed)
|
||||||
SELECT
|
SELECT
|
||||||
content_type_id, object_id, site_id, user_id, comment, submit_date,
|
content_type_id, object_id, site_id, user_id, '', '', '', comment,
|
||||||
ip_address, is_public, is_removed
|
submit_date, ip_address, is_public, is_removed
|
||||||
FROM comments_comment;
|
FROM comments_comment;
|
||||||
|
|
||||||
UPDATE django_comments SET user_name = (
|
UPDATE django_comments SET user_name = (
|
||||||
|
|
Loading…
Reference in New Issue