* 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:
committed by
Chris Morgan
parent
2afd981cda
commit
63a42c5a22
@@ -11,7 +11,7 @@ create table buglinks (
|
||||
versionId int not null,
|
||||
submitTime datetime NOT NULL,
|
||||
submitterId int(11) NOT NULL default '0',
|
||||
queued enum('true','false') NOT NULL default 'false',
|
||||
state enum('accepted','queued') NOT NULL default 'accepted',
|
||||
key(linkId),
|
||||
index(bug_id),
|
||||
index(versionId)
|
||||
|
||||
Reference in New Issue
Block a user