From 6dd11c1112a2ca2740c18dff7cf5db36860328cc Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Wed, 13 Jun 2018 10:11:43 +0200 Subject: misc/database-layout.dump: `fail_reasons` extended --- misc/database-layout.dump | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'misc/database-layout.dump') diff --git a/misc/database-layout.dump b/misc/database-layout.dump index aa43e3c..d84af0d 100644 --- a/misc/database-layout.dump +++ b/misc/database-layout.dump @@ -519,7 +519,7 @@ email_log CREATE TABLE `email_log` ( fail_reasons CREATE TABLE `fail_reasons` ( `id` smallint(6) NOT NULL AUTO_INCREMENT, `name` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, - `identifier` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, + `identifier` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL, `severity` smallint(6) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) @@ -722,13 +722,15 @@ INSERT INTO `email_actions` VALUES INSERT INTO `fail_reasons` VALUES (1,'build()','==> ERROR: A failure occurred in build()\\.',0), (2,'source','==> ERROR: Could not download sources\\.',1), - (3,'package-cache','.*error: failed to commit transaction (invalid or corrupted pack',2), + (3,'package-cache','.*error: failed to commit transaction (invalid or corrupted package (PGP signature))',2), (4,'prepare()','==> ERROR: A failure occurred in prepare()\\.',2), (5,'package()','==> ERROR: A failure occurred in package\\(_\\S\\+\\)\\?()\\.',3), (6,'check()','==> ERROR: A failure occurred in check()\\.',4), (7,'dependencies','==> ERROR: \'pacman\' failed to install missing dependencies\\.',1), - (8,'run-as-root','==> ERROR: Running makepkg as root is not allowed as it can caus',1), - (9,'unknown','.*',100); + (8,'run-as-root','==> ERROR: Running makepkg as root is not allowed as it can cause permanent,',1), + (9,'unknown','.*',100), + (10,'pacman','==> ERROR: Failed to install all packages',5), + (11,'unclean-chroot','==> ERROR: \'.*\' does not appear to be an Arch chroot.',5); INSERT INTO `repositories` VALUES (1,'core',1,'1',2), (2,'extra',1,'1',2), -- cgit v1.2.3