'type' same size in regexp than in attribute

pull/217/head
Christophe Vandeplas 2013-07-11 13:12:37 +02:00
parent 7cda2a5dc2
commit 5eff27b5c0
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ CREATE TABLE IF NOT EXISTS `regexp` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`regexp` varchar(255) COLLATE utf8_bin NOT NULL,
`replacement` varchar(255) COLLATE utf8_bin NOT NULL,
`type` varchar(32) COLLATE utf8_bin NOT NULL DEFAULT 'ALL',
`type` varchar(100) COLLATE utf8_bin NOT NULL DEFAULT 'ALL',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_bin;