Remove userExperience table, we are re-implementing user testing results and will likely rename this unused table
This commit is contained in:
@@ -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
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user