Skip to content

Commit 1e78c3b

Browse files
authored
Merge pull request #17 from GOVCERT-LU/fix-database
hostname can be up to 253 characters
2 parents 702ea11 + 74de677 commit 1e78c3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db/SCHEMA.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ DROP TABLE IF EXISTS `exceptions`;
66
CREATE TABLE `exceptions` (
77
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
88
`oid` varchar(128) NOT NULL DEFAULT '',
9-
`hostname` varchar(32) DEFAULT NULL,
9+
`hostname` varchar(256) DEFAULT NULL,
1010
`content` varchar(128) DEFAULT NULL,
1111
`comment` text,
1212
PRIMARY KEY (`id`),

0 commit comments

Comments
 (0)