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
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';