Change raw table to InnoDB and utf8mb4.

Signed-off-by: Thomas Hochstein <thh@thh.name>
This commit is contained in:
Thomas Hochstein 2025-06-29 12:22:24 +02:00
parent 2f6684e7a0
commit d989c98d5b
2 changed files with 3 additions and 1 deletions

View file

@ -68,7 +68,7 @@ CREATE TABLE IF NOT EXISTS `$Conf{'DBTableRaw'}` (
KEY `day` (`day`),
KEY `mid` (`mid`),
KEY `peer` (`peer`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Raw data';
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Raw data';
RAW
--
-- Table structure for table DBTableGrps

View file

@ -1,5 +1,7 @@
NewsStats 0.5.0 (unreleased)
* Change install path from /srv/ to /opt/.
* dbcreate: Change raw table to InnoDB and utf8mb4.
* feedlog: Fix errors when saving unencoded 8bit headers.
NewsStats 0.4.0 (2025-06-02)
* Reformat $Conf{TLH} for GroupStats only.