简体   繁体   中英

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.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM