Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using webform and drupal7. during testing I had created many test submissions. Now I have cleared all the submissions and all my webform tables are empty. But if I create a new submission I still get the sid as 51 (ideally it should have been 1)

Can anyone let me know how I can reset the sid value to 1?

Thanks in advance, Rohit

share|improve this question
Got it :) I just had to do the following: ALTER TABLE webform_submissions AUTO_INCREMENT = 1 Thanks, – rinku Jun 6 '11 at 6:52
Cool. You can answer and accept your own question instead of posting in the comments so people can see the answer (and that it has been answered) if they search for the same thing. – hross Jun 6 '11 at 12:30

1 Answer

up vote 1 down vote accepted

Got it :) I just had to do the following:

ALTER TABLE webform_submissions AUTO_INCREMENT = 1

Thanks,

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.