Implement Maintainer ratings.

This commit is contained in:
Tony Lambregts
2005-01-04 19:37:49 +00:00
committed by Jeremy Newman
parent 4dec5cf83e
commit c7beb30195
3 changed files with 66 additions and 17 deletions

View File

@@ -52,14 +52,16 @@ create table appFamily (
* a version of an application
*/
create table appVersion (
versionId int not null auto_increment,
appId int not null,
versionName varchar(100) not null,
keywords text,
description text,
webPage varchar(100),
rating_windows float default 0.0,
rating_fake float default 0.0,
versionId int not null auto_increment,
appId int not null,
versionName varchar(100) not null,
keywords text,
description text,
webPage varchar(100),
rating_windows float default 0.0,
rating_fake float default 0.0,
maintainer_rating text,
maintainer_release text,
key(versionId)
);
@@ -181,7 +183,7 @@ create table appData (
id int not null auto_increment,
appId int not null,
versionId int default 0,
type enum('image', 'url'),
type enum('image', 'url', 'bug'),
description text,
url varchar(255),
key(id),