View | Details | Raw Unified | Return to bug 17234
Collapse All | Expand All

(-)a/installer/data/mysql/updatedatabase.pl (-2 / +1 lines)
Lines 12280-12286 if ( CheckVersion($DBversion) ) { Link Here
12280
             `id` int(11) NOT NULL AUTO_INCREMENT, 
12280
             `id` int(11) NOT NULL AUTO_INCREMENT, 
12281
             `name` varchar(255) NOT NULL COMMENT 'the name of the field as it will be stored in the search engine',
12281
             `name` varchar(255) NOT NULL COMMENT 'the name of the field as it will be stored in the search engine',
12282
             `label` varchar(255) NOT NULL COMMENT 'the human readable name of the field, for display', 
12282
             `label` varchar(255) NOT NULL COMMENT 'the human readable name of the field, for display', 
12283
             `type` ENUM('string', 'date', 'number', 'boolean', 'sum') NOT NULL COMMENT 'what type of data this holds, relevant when storing it in the search engine',
12283
             `type` ENUM('', 'string', 'date', 'number', 'boolean', 'sum') NOT NULL COMMENT 'what type of data this holds, relevant when storing it in the search engine',
12284
             PRIMARY KEY (`id`),
12284
             PRIMARY KEY (`id`),
12285
             UNIQUE KEY (`name`)
12285
             UNIQUE KEY (`name`)
12286
             ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
12286
             ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci
12287
- 

Return to bug 17234