* 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

@@ -17,9 +17,9 @@ create table appMaintainers (
versionId int,
userId int,
maintainReason text,
superMaintainer bool,
superMaintainer tinyint(1),
submitTime datetime,
queued enum('true','false','rejected','pending') NOT NULL default 'false',
state enum('accepted','queued','pending') NOT NULL default 'accepted',
notificationLevel int not null default '0',
notificationTime datetime,
key(maintainerId)