
Originally Posted by
vasilt
The "countries" table is not altered. A single country has two rows in the table - one for each language.
No it doesn't, not in the vanilla code:
Code:
CREATE TABLE countries (
countries_id int(11) NOT NULL auto_increment,
countries_name varchar(64) NOT NULL default '',
countries_iso_code_2 char(2) NOT NULL default '',
countries_iso_code_3 char(3) NOT NULL default '',
address_format_id int(11) NOT NULL default '0',
status tinyint(1) default 1,
PRIMARY KEY (countries_id),
KEY idx_countries_name_zen (countries_name),
KEY idx_address_format_id_zen (address_format_id),
KEY idx_iso_2_zen (countries_iso_code_2),
KEY idx_iso_3_zen (countries_iso_code_3)
) ENGINE=MyISAM;
No column for language_id.
Bookmarks