View file install/db_tables/visit_everyday.sql
CREATE TABLE IF NOT EXISTS `visit_everyday` ( `time` int(11) DEFAULT NULL, `host` int(11) DEFAULT NULL, `hit` int(11) NOT NULL, `host_ip_ua` int(11) DEFAULT NULL, KEY `time` (`time`), KEY `host` (`host`), KEY `hit` (`hit`), KEY `host_ip_ua` (`host_ip_ua`) ) ENGINE=MyISAM DEFAULT CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci;