Update:
I created the tables in the following way, but no data is written by the plugin.
"CREATE TABLE IF NOT EXISTS wp_pvc_daily(
<code>id</code> mediumint(9) NOT NULL AUTO_INCREMENT,
<code>time</code> date DEFAULT '0000-00-00' NOT NULL,
<code>postnum</code> varchar(255) NOT NULL,
<code>postcount</code> int DEFAULT '0' NOT NULL,
UNIQUE KEY id (id));
CREATE TABLE IF NOT EXISTS wp_pvc_total (
<code>id</code> mediumint(9) NOT NULL AUTO_INCREMENT,
<code>postnum</code> varchar(255) NOT NULL,
<code>postcount</code> int DEFAULT '0' NOT NULL,
UNIQUE KEY id (id)) $collate;