Es gibt eine Community-Webseite, basiert auf Drupal 6, welche erste Phase von Upgrade/Migration hinter sich hat. Täglich kommen hunderte neue Kommentare dazu. Migration jedes mal neu starten geht nicht. Alle neue Kommentare manuell umziehen ist sehr zeitaufwendig. Deswegen haben wir folgendes ausprobiert, was scheinbar funktioniert:
- Hunderte neue leere Kommentare auf D8 erstellen. das kann man auch mit F5 / Browser-Reload.
- DB-Tabelle db-drupal8.comment_field_data und db-drupal6.comments abgleichen
- DB-Tabelle db-drupal8.comment__comment_body und db-drupal6.comments abgleichen
- Wenn nötig comment_body_format anpassen
Mögliche SQL Code (keine Haftung):
update drupal8.comment_field_data d8, drupal6.comments d6 set
d8.status=d6.status,
d8.pid=d6.pid,
d8.entity_id=d6.nid,
d8.subject=d6.subject,
d8.uid=d6.uid,
d8.name=d6.name,
d8.mail=d6.mail,
d8.homepage=d6.homepage,
d8.hostname=d6.hostname,
d8.created=d6.timestamp,
d8.changed=d6.timestamp,
d8.thread=d6.thread
where d8.cid = d6.cid and d8.cid > 12345;
update drupal8.comment__comment_body d8, drupal6.comments d6 set
d8.comment_body_value=d6.comment
where d8.entity_id = d6.cid and d8.entity_id > 12345;
"cid > 12345" muss man natürlich auch anpassen oder entfernen.
Neuen Kommentar schreiben