Ah, ok... yes that worked. Here is the row. I assume that this means it never got in the DB?
+------+-------------------+---------+---------------------+--------+---------+------------------+-------------------------------------------------+---------------------+----------+-------------+----------------------+-------------------------+---------------------+-----------+------------+
| id | review_request_id | user_id | timestamp | public | ship_it | base_reply_to_id | email_message_id | time_emailed | body_top | body_bottom | body_top_reply_to_id | body_bottom_reply_to_id | reviewed_diffset_id | rich_text | extra_data |
+------+-------------------+---------+---------------------+--------+---------+------------------+-------------------------------------------------+---------------------+----------+-------------+----------------------+-------------------------+---------------------+-----------+------------+
| 9242 | 4371 | 9 | 2015-01-29 20:50:21 | 1 | 1 | NULL | <20150129205021.11594.12299@xxxxxxxx.xxxxx.xxx> | 2015-01-29 20:50:21 | | | NULL | NULL | NULL | 1 | {} |
+------+-------------------+---------+---------------------+--------+---------+------------------+-------------------------------------------------+---------------------+----------+-------------+----------------------+-------------------------+---------------------+-----------+------------+
Via "show create table reviews_review;" I can see that the default charset for that table is utf8:
CREATE TABLE `reviews_review` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`review_request_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`timestamp` datetime NOT NULL,
`public` tinyint(1) NOT NULL,
`ship_it` tinyint(1) NOT NULL,
`base_reply_to_id` int(11) DEFAULT NULL,
`email_message_id` varchar(255) DEFAULT NULL,
`time_emailed` datetime DEFAULT NULL,
`body_top` longtext NOT NULL,
`body_bottom` longtext NOT NULL,
`body_top_reply_to_id` int(11) DEFAULT NULL,
`body_bottom_reply_to_id` int(11) DEFAULT NULL,
`reviewed_diffset_id` int(11) DEFAULT NULL,
`rich_text` tinyint(1) NOT NULL,
`extra_data` longtext,
PRIMARY KEY (`id`),
KEY `reviews_review_bf7a5334` (`review_request_id`),
KEY `reviews_review_fbfc09f1` (`user_id`),
KEY `reviews_review_3534312d` (`base_reply_to_id`),
KEY `reviews_review_9faae2ee` (`body_top_reply_to_id`),
KEY `reviews_review_4a7afee7` (`body_bottom_reply_to_id`),
KEY `reviews_review_54af9375` (`reviewed_diffset_id`),
CONSTRAINT `base_reply_to_id_refs_id_e4301b6b` FOREIGN KEY (`base_reply_to_id`) REFERENCES `reviews_review` (`id`),
CONSTRAINT `body_bottom_reply_to_id_refs_id_e4301b6b` FOREIGN KEY (`body_bottom_reply_to_id`) REFERENCES `reviews_review` (`id`),
CONSTRAINT `body_top_reply_to_id_refs_id_e4301b6b` FOREIGN KEY (`body_top_reply_to_id`) REFERENCES `reviews_review` (`id`),
CONSTRAINT `reviewed_diffset_id_refs_id_ab2fc2f6` FOREIGN KEY (`reviewed_diffset_id`) REFERENCES `diffviewer_diffset` (`id`),
CONSTRAINT `review_request_id_refs_id_f4615875` FOREIGN KEY (`review_request_id`) REFERENCES `reviews_reviewrequest` (`id`),
CONSTRAINT `user_id_refs_id_b356281c` FOREIGN KEY (`user_id`) REFERENCES `auth_user` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9333 DEFAULT CHARSET=utf8 |