
Eigentlich müsste doch aus Konsitenzgründen in der Tabelle cat_art_spec
(ab 4.5) die Spalte "client" zu idclient umbenannt werden, oder etwa nicht?
Schliesslich ist die Spalte definiert als Integer(10) und nicht als varchar(n)
--VORHER
CREATE TABLE contenido_dc110_art_spec (
idartspec int(10) NOT NULL default '0',
`client` int(10) NOT NULL default '0',
lang int(10) NOT NULL default '0',
artspec varchar(255) NOT NULL default '',
online tinyint(1) NOT NULL default '0',
artspecdefault tinyint(1) NOT NULL default '0',
PRIMARY KEY (idartspec),
KEY `client` (`client`),
KEY lang (lang)
)
--NACHHER ?
CREATE TABLE contenido_dc110_art_spec (
idartspec int(10) NOT NULL default '0',
idclient int(10) NOT NULL default '0',
lang int(10) NOT NULL default '0',
artspec varchar(255) NOT NULL default '',
online tinyint(1) NOT NULL default '0',
artspecdefault tinyint(1) NOT NULL default '0',
PRIMARY KEY (idartspec),
KEY `client` (`client`),
KEY lang (lang)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

Und was bitte schön ist eigentlich eine Artikelspezifikation?