magento数据库中的客户确认字段

时间:2015-01-22 04:25:37

标签: mysql magento

我的网站确认邮件有问题。所以很多客户无法确认自己的账号。我可以在后端确认他们的帐户,但我想用mysql查询来节省时间。我在数据库中查找确认字段但没有任何迹象。谁知道它在哪里?

韩国社交协会

1 个答案:

答案 0 :(得分:0)

好的,我做了一些RND并找到了这个。如果您想在Magento内部进行,您可以通过id加载客户

$customer->setConfirmation(null);
$customer->save();

'confirmation'位于eav_attribute表格中,与customer_eav_attribute

一起加入