| 236 | '''User 'garthk' also found some problem with the {{{.module}}}/{{{.model}}} renaming stuff above, which he fixed manually, and followed up with some fixes for the Django comments system in case you're getting exceptions telling you that "Table appname.comments_comment does not exist".''' |
| 237 | |
| 238 | {{{ |
| 239 | ALTER TABLE comments RENAME TO comments_comment; |
| 240 | ALTER TABLE comments_karma RENAME TO comments_karmascore; |
| 241 | ALTER TABLE comments_free RENAME TO comments_freecomment; |
| 242 | ALTER TABLE comments_moderator_deletions RENAME TO comments_moderatordeletion; |
| 243 | ALTER TABLE comments_user_flags RENAME TO comments_userflag; |
| 244 | }}} |
| 245 | |
| 246 | |