Support migrating existing values

Created on 20 February 2018, about 7 years ago
Updated 29 February 2024, about 1 year ago

When performing a migration upgrade from drupal 6 to drupal 8, I needed a way to migrate existing auto increment fields, and then have them work as the serial fields is designed to after migration.

The default with serial field is to always assign new numbers, what I needed was to assigns the value passed in if there is one, otherwise, do the auto assigning.

πŸ“Œ Task
Status

Needs work

Version

2.0

Component

Code

Created by

πŸ‡¦πŸ‡ΊAustralia singularo Adelaide, AUS

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡¬πŸ‡§United Kingdom jacktonkin

    Re-rolled against 2.0.x

  • πŸ‡ΊπŸ‡ΈUnited States benjifisher Boston area

    I wonder how this issue will be affected by πŸ› Serial not generating on entity save in certain contexts Needs work . I am adding that as a related issue.

    Looking at the patch in #23, I have a few comments.

    1.
    +++ b/src/SerialSQLStorage.php
    @@ -73,7 +73,7 @@ class SerialSQLStorage implements ContainerInjectionInterface, SerialStorageInte
       /**
        * {@inheritdoc}
        */
    -  public function generateValueFromName($storageName, $delete = TRUE) {
    +  public function generateValueFromName($storageName, $externalValue = NULL, $delete = TRUE) {
    

    Normally, when adding a new optional parameter, we add it after the existing parameters, for backwards compatibility (BC).

    2. @@ -81,9 +81,17 @@ class SerialSQLStorage implements ContainerInjectionInterface, SerialStorageInte
    ...
    +      if (isset($externalValue)) {
    +        $sid = $connection->insert($storageName)
    +          ->fields(['sid' => $externalValue, 'uniqid' => $uniqid])
    +          ->execute();
    +      }
    +      else {
    +        $sid = $connection->insert($storageName)
    +          ->fields(['uniqid' => $uniqid])
    +          ->execute();
    +      }
    

    This can be simplified. Something like this:

    $values = [...];
    if (...) {
      $values['sid'] = ...;
    }
    $sid = $connection->insert(...)
      ->fields($values)
      ->execute();
    
Production build 0.71.5 2024