* convert queue to state columns Changed column name from queue to state and changed enum from ('true','false') to ('accepted','queued') in buglinks.sql Changed column name from queue to state and changed enum from ('true','false','rejected','pending') to ('accepted','queued','pending') in maintainers.sql Changed field superMaintainer from bool to tinyint(1) in maintainers.sql

This commit is contained in:
Henti Smith
2008-07-07 09:14:50 +02:00
committed by Chris Morgan
parent 2afd981cda
commit 63a42c5a22
3 changed files with 4 additions and 7 deletions

View File

@@ -44,7 +44,6 @@ create table appFamily (
key(appId)
);
/*
* a version of an application
*/
@@ -140,13 +139,11 @@ create table appData (
url varchar(255) default NULL,
submitTime datetime NOT NULL,
submitterId int(11) NOT NULL default '0',
queued enum('true','false','rejected') NOT NULL default 'false',
state enum('accepted','queued','rejected') NOT NULL default 'accepted',
KEY id (id),
KEY versionId (versionId)
);
/*
* allow users to vote for apps, as in, request that an app gets better support
*/