From 0e411dd527a1265c8897f9fc4a8028d54b457142 Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Sat, 1 Oct 2005 00:42:40 +0000 Subject: [PATCH] Remove userExperience table, we are re-implementing user testing results and will likely rename this unused table --- tables/appdb_tables.sql | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tables/appdb_tables.sql b/tables/appdb_tables.sql index 162b435..fe7bb22 100644 --- a/tables/appdb_tables.sql +++ b/tables/appdb_tables.sql @@ -5,7 +5,6 @@ use apidb; drop table if exists vendor; drop table if exists appFamily; drop table if exists appVersion; -drop table if exists userExperience; drop table if exists appCategory; drop table if exists appHitStats; drop table if exists catHitStats; @@ -63,19 +62,6 @@ create table appVersion ( ); -create table userExperience ( - uExpId int not null auto_increment, - versionId int not null, - userComments text, - testPlatform varchar(100), - wineVintage varchar(100), - entryDate timestamp not null, - userId int not null, - wineCfgFile text, - key(uExpId) -); - - /* * application category */