Remove userExperience table, we are re-implementing user testing results and will likely rename this unused table

This commit is contained in:
Chris Morgan
2005-10-01 00:42:40 +00:00
committed by WineHQ
parent e1ca09c170
commit 0e411dd527

View File

@@ -5,7 +5,6 @@ use apidb;
drop table if exists vendor; drop table if exists vendor;
drop table if exists appFamily; drop table if exists appFamily;
drop table if exists appVersion; drop table if exists appVersion;
drop table if exists userExperience;
drop table if exists appCategory; drop table if exists appCategory;
drop table if exists appHitStats; drop table if exists appHitStats;
drop table if exists catHitStats; 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 * application category
*/ */