Change raw table to InnoDB and utf8mb4.
Signed-off-by: Thomas Hochstein <thh@thh.name>
This commit is contained in:
parent
2f6684e7a0
commit
d989c98d5b
|
@ -68,7 +68,7 @@ CREATE TABLE IF NOT EXISTS `$Conf{'DBTableRaw'}` (
|
||||||
KEY `day` (`day`),
|
KEY `day` (`day`),
|
||||||
KEY `mid` (`mid`),
|
KEY `mid` (`mid`),
|
||||||
KEY `peer` (`peer`)
|
KEY `peer` (`peer`)
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Raw data';
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Raw data';
|
||||||
RAW
|
RAW
|
||||||
--
|
--
|
||||||
-- Table structure for table DBTableGrps
|
-- Table structure for table DBTableGrps
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
NewsStats 0.5.0 (unreleased)
|
NewsStats 0.5.0 (unreleased)
|
||||||
* Change install path from /srv/ to /opt/.
|
* 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)
|
NewsStats 0.4.0 (2025-06-02)
|
||||||
* Reformat $Conf{TLH} for GroupStats only.
|
* Reformat $Conf{TLH} for GroupStats only.
|
||||||
|
|
Loading…
Reference in a new issue