[#5425] Manage User-Defined Attributes doen't work anymore
History
Comments
Date: 2010-09-15 04:23
Posted By: Andi Petzoldt (andiministrator)
The problem seems to be the upgrade, the new fields for catalog_attr table are
not in after the upgrade.
After I added the fields manually, the module works fine.
Here my SQL-Statement for adding the fields manually:
ALTER TABLE `cms_module_catalog_attr` ADD `order_by` INT( 4 ) NOT NULL AFTER
`attribute` ,ADD `alias` VARCHAR( 60 ) NOT NULL AFTER `order_by` ,ADD `length`
INT( 11 ) NOT NULL AFTER `alias` ,ADD `defaultval` TEXT NOT NULL AFTER `length`
;