Zencart 1.3.5 (and 1.3.02)
CREATE TABLE zones (
zone_id int(11) NOT NULL auto_increment,
zone_country_id int(11) NOT NULL default '0',
zone_code varchar(32) NOT NULL default '',
zone_name varchar(32) NOT NULL default '',
PRIMARY KEY (zone_id),
KEY idx_zone_country_id_zen (zone_country_id),
KEY idx_zone_code_zen (zone_code)
) TYPE=MyISAM;
with only 32 characters for the zone name.
and line 241
Inverness-shire (Lewis, Uist, Skye) has 36 characters in one place, in another for some reason the SQL has a quote before it.
and line 356
INSERT INTO zones (zone_country_id,zone_code,zone_name) VALUES (222, 'Inverness-shire (Lewis, Uist, Skye)', 'Inverness-shire (Lewis, Uist, Skye)');