您的位置:首页 > 数据库

如何修改magento订单长度

2011-01-21 21:00 260 查看
如何修改magento订单长度
2009-12-17 13:00
magento默认订单号是100000000,如果想把订单号改为1000开始,只需要进入magento的数据库,找到表
eav_entity_type,然后运行SQL语句:

update `eav_entity_type` set `increment_pad_length`=3 where `entity_type_code`='order';

这里
`increment_pad_length`是订单长度,你可以修改任意长度。


内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  magento 数据库 sql