Module: appdb
Branch: master
Commit: 75edc0778910135ac90365b6e72ed0741f81ee56
URL: http://source.winehq.org/git/appdb.git/?a=commit;h=75edc0778910135ac90365b6…
Author: Jeremy Newman <jnewman(a)codeweavers.com>
Date: Wed Aug 2 08:33:33 2017 -0500
remove appHitStats and catHitStats, no longer used
There are better ways of tracking that information than
storing it in sql tables.
---
tables/appdb_tables.sql | 24 ------------------------
1 file changed, 24 deletions(-)
diff --git a/tables/appdb_tables.sql b/tables/appdb_tables.sql
index d4c5b6b..30af6ca 100644
--- a/tables/appdb_tables.sql
+++ b/tables/appdb_tables.sql
@@ -6,8 +6,6 @@ drop table if exists vendor;
drop table if exists appFamily;
drop table if exists appVersion;
drop table if exists appCategory;
-drop table if exists appHitStats;
-drop table if exists catHitStats;
drop table if exists appComments;
drop table if exists appData;
drop table if exists appBundle;
@@ -94,28 +92,6 @@ create table appBundle (
/*
- * appHitStats and catHitStats are to record statistics
- */
-create table appHitStats (
- appHitId int not null auto_increment,
- time datetime,
- ip varchar(16),
- appId int not null,
- count int,
- key(appHitId)
-);
-
-create table catHitStats (
- catHitId int not null auto_increment,
- time datetime,
- ip varchar(16),
- catId int not null,
- count int,
- key(catHitId)
-);
-
-
-/*
* user comments
*/
create table appComments (