Fixed Pistos' issue in downmigration

This commit is contained in:
Manuel Schölling 2011-10-23 15:23:39 +02:00
parent d8e410f242
commit a91932c576

View file

@ -85,7 +85,7 @@ SQL
if postgres? if postgres?
execute %{ execute %{
INSERT INTO posts ( INSERT INTO posts (
tmp_old_id, author_id, public, diaspora_handle, guid, pending, type, text, id, author_id, public, diaspora_handle, guid, pending, type, text,
remote_photo_path, remote_photo_name, random_string, processed_image, remote_photo_path, remote_photo_name, random_string, processed_image,
youtube_titles, created_at, updated_at, unprocessed_image, youtube_titles, created_at, updated_at, unprocessed_image,
object_url, image_url, image_height, image_width, object_url, image_url, image_height, image_width,
@ -95,8 +95,7 @@ SQL
tmp_old_id, author_id, public, diaspora_handle, guid, pending, 'Photo', text, tmp_old_id, author_id, public, diaspora_handle, guid, pending, 'Photo', text,
remote_photo_path, remote_photo_name, random_string, processed_image, remote_photo_path, remote_photo_name, random_string, processed_image,
NULL, created_at, updated_at, unprocessed_image, NULL, NULL, NULL, NULL, NULL, created_at, updated_at, unprocessed_image, NULL, NULL, NULL, NULL,
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, status_message_guid, 0, comments_count, NULL
status_message_guid, 0, comments_count, NULL
FROM photos FROM photos
} }