Migration of points
This guide outlines the process of migrating points from another shop system to Shopware 6. It is intended for developers and system administrators involved in system migration tasks.
Import of Points into Shopware 6
Mandatory Fields for Import
Migration of Points Using Shopware 5 as an Example
SELECT
UUID() AS id,
u.customernumber AS customer_number,
up.points AS points,
"Migration" AS reason
FROM s_core_plugins_bonus_user_points AS up
LEFT JOIN s_user AS u
ON up.userID = u.id;Last updated
Was this helpful?
