Closed GoogleCodeExporter closed 9 years ago
Patch notes.
For safe perfomance apply sql patch:
alter table forum_post add index (time);
And don't forget delete 'forum_latest_post', 'thread_latest_post' indexes for
existing applications:
alter table forum_thread drop key forum_thread_thread_latest_post_id;
alter table forum_forum drop key forum_forum_forum_latest_post_id;
Original comment by narma....@gmail.com
on 13 Apr 2008 at 3:00
"For safe perfomance apply sql patch:
alter table forum_post add index (time);"
In django model look as
time = models.DateTimeField(blank=True, null=True, db_index=True)
Original comment by narma....@gmail.com
on 13 Apr 2008 at 3:04
Duplicate of #15.
Original comment by rwpoul...@gmail.com
on 15 Apr 2008 at 12:44
Original issue reported on code.google.com by
narma....@gmail.com
on 11 Apr 2008 at 9:45Attachments: