snowrabbit Posted January 8, 2010 Posted January 8, 2010 I have made a lot of testing in my store, the order No. Now is 160, how do I reset it to be stared with 0 again? Thanks.
Guest Posted January 8, 2010 Posted January 8, 2010 Try the link below. Where it says alter table osc_orders auto_increment = 1000; Change to alter table orders auto_increment = 1000; Change 1000 to 1 Change Order ID
♥mdtaylorlrim Posted January 8, 2010 Posted January 8, 2010 I have made a lot of testing in my store, the order No. Now is 160, how do I reset it to be stared with 0 again? Thanks. alter table orders set auto_increment=0 You will probably need to manually delete the orders from the db. Why not just leave it, or better yet, set it to start at 10000? Community Bootstrap Edition, Edge Avoid the most asked question. See How to Secure My Site and How do I...?
snowrabbit Posted January 9, 2010 Author Posted January 9, 2010 Try the link below. Where it says alter table osc_orders auto_increment = 1000; Change to alter table orders auto_increment = 1000; Change 1000 to 1 Change Order ID Thanks, worked
Recommended Posts
Archived
This topic is now archived and is closed to further replies.