Wofür ist die Tabelle s_core_engine_elements ?

Hi,

folgender “Hotfix” hat mir bei der Migration geholfen:

Profile\Shopware.php 

    public function getAttributeSelect()
    {
// return "
		// SELECT `name` as id, `label` as name
		// FROM {$this->quoteTable('core_engine_elements')}
		// WHERE `name` LIKE '%attr%%'
		// UNION ALL
		// SELECT 'ean' as id, 'EAN' as name
		// ";

        return "
            SELECT column_name AS id, label AS name
            FROM {$this->quoteTable('attribute_configuration')}
            WHERE table_name='s_articles_attributes'
            UNION ALL
            SELECT 'ean' AS id, 'EAN' AS name
        ";
    }

Der auskommentierte ist der ursprüngliche Code (line 141)

2 „Gefällt mir“