2020-10-19 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rddbmgr(8) that could cause the 'RSS_SCHEMAS',
	'FEED_IMAGES' and 'SUPERFEED_MAPS' to be created with incorrect
	character set and engine type values.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2020-10-19 01:59:20 -04:00
parent 916229bc52
commit effc459d61
3 changed files with 16 additions and 4 deletions

View File

@@ -413,7 +413,9 @@ bool MainObject::RevertSchema(int cur_schema,int set_schema,QString *err_msg)
"HEADER_XML text,"+
"CHANNEL_XML text,"+
"ITEM_XML text,"+
"index NAME_IDX(NAME))";
"index NAME_IDX(NAME)) "+
" charset utf8mb4 collate utf8mb4_general_ci"+
db_table_create_postfix;
if(!RDSqlQuery::apply(sql,err_msg)) {
return false;
}