How to Change Order Starting Number in Magento

FlourishDNA picture FlourishDNA · Feb 23, 2012 · Viewed 36.3k times · Source

Is there any way to change Order Starting Number in Magento without changing order numbers that are already there? I just want to set 170000xxxx for all new orders.

Thanks

Answer

Zachary Schuessler picture Zachary Schuessler · Feb 23, 2012

Look in eav_entity_store and find increment_last_id. Update this number, making sure that entity_type_id is correct for orders.

Find the entity_type_id for orders

SELECT entity_type_id FROM eav_entity_type WHERE entity_type_code = 'order';