drupaldrupal-8submissionsid

Drupal 8 Webform, how to set next Sid value


Is there a way to change the next Submission ID in the webform plugin please ?
We are working with Drupal 8.8.x and we need it to be arround 200k.


Solution

  • I found a way throw database :

    ALTER TABLE `webform_submission` MODIFY `sid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=NEW_SID
    ALTER TABLE `webform_submissions` MODIFY `sid` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=NEW_SID
    

    Thanks