
Originally Posted by
bubblegumgoods
If at the end of the month I was to reset all products ordered back to 0, would when somebody logs into there account lose the info on what they ordered in the past?
To reset it all back to 0, you'd have to totally delete all orders and all order history from your site. Thus, all customer orders will be gone.
That's a pretty harsh loss of data.

Originally Posted by
bubblegumgoods
Also, seeing as how I put the numbers forward way to where I wanted them, is there a way I can fix that? I know you can't set the numbers "backward", but is there a way I can fix that or would I have to reset all products ordered back to 0?
You're messing with database automatic incrementing values when you do this. If you've already had orders to increase the number again, the resetting to a lower number will be moot. If you don't understand how databases work, you should not be playing in them. Nevertheless, to reset it back to "7", do this:
1. Admin->Tools->Install SQL Patches
2. Type this in the big text box, and click Send:
Code:
ALTER TABLE orders AUTO_INCREMENT = 7;