# HG changeset patch # User David A. Holland # Date 1402896465 14400 # Node ID 812c956dd0e9a700c7192ea036d6b6429e80567b # Parent debc55088b4fc347f81e3ae54c33f724c4f389ac Add another admin queue type for comments on nonexistent PRs. Also, correct stupid spelling mistake. Need to get the test harness running again. diff -r debc55088b4f -r 812c956dd0e9 database/schema/admin.sql --- a/database/schema/admin.sql Sun Jun 15 18:16:19 2014 -0400 +++ b/database/schema/admin.sql Mon Jun 16 01:27:45 2014 -0400 @@ -19,11 +19,12 @@ -- this is not configurable as the logic for recognizing these is open-coded -- XXX should probably use an enum type for this instead -INSERT INTO adminmaintypes VALUES ('locked', 'Comments on locked PRs'); -INSERT INTO adminmaintypes VALUES ('fbounces', 'Feedback nag-mail bounces'); -INSERT INTO adminmaintypes VALUES ('rbounces', 'Responsible nag-mail bounces'); -INSERT INTO adminmaintypes VALUES ('bounces', 'Other bounces'); -INSERT INTO adminmaintypes VALUES ('junk', 'Unrecognized mail traffic'); +INSERT INTO adminmailtypes VALUES ('locked', 'Comments on locked PRs'); +INSERT INTO adminmailtypes VALUES ('nonexistent', 'Comments on nonexistent PRs'); +INSERT INTO adminmailtypes VALUES ('fbounces', 'Feedback nag-mail bounces'); +INSERT INTO adminmailtypes VALUES ('rbounces', 'Responsible nag-mail bounces'); +INSERT INTO adminmailtypes VALUES ('bounces', 'Other bounces'); +INSERT INTO adminmailtypes VALUES ('junk', 'Unrecognized mail traffic'); CREATE TABLE adminmailqueue ( rawmsg bigint not null references rawmail,