Implemented the user friendly screenshot submitting feature

This commit is contained in:
Jonathan Ernst
2004-12-18 06:06:46 +00:00
committed by WineHQ
parent c89531e4c1
commit a8ba02e76d
7 changed files with 485 additions and 156 deletions

View File

@@ -13,6 +13,7 @@ drop table if exists catHitStats;
drop table if exists appOwners;
drop table if exists appComments;
drop table if exists appData;
drop table if exists appDataQueue;
drop table if exists appQueue;
drop table if exists appCrosslink;
drop table if exists appBundle;
@@ -201,6 +202,26 @@ create table appData (
);
/*
* links to screenshots and other stuff waiting to be accepted
*/
create table appDataQueue (
queueid int not null auto_increment,
queueappId int not null,
queueversionId int default 0,
queuetype enum('image', 'url'),
queuedescription text,
queueurl varchar(255),
queuecontent longblob,
queueuserId int not null,
submitTime timestamp,
key(queueid),
index(queueappId),
index(queueversionId)
);
/*
* allow users to vote for apps, as in, request that an app gets better support
*/