The previous message had flag emojis in it originally, but I got a posting error because they couldn't insert in the body column of the item table. Comparing my hubzilla database to the source schema, I see that my tables have character set utf8mb3 while the source schema currently says utf8mb4. Casting about online, I found a script that would generate all the alter table commands where needed, such as:
ALTER DATABASE `hubzilla` CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;
Looking at my streams database, I see that the tables have a collation of utf8mb4_0900_ai_ci, which appears to be newer and be accent insensitive.
Any thought as to whether which collation to use and whether running this script to change all the character columns is a wise thing to do?