我正在尝试在 Magento 1.7.0.0 中设置一个自定义实体,遵循alan Storms 关于它的文章,但是使用这个简单的安装脚本,它告诉我“无法创建表:eavblog_posts”。
我的安装脚本很简单,看起来像这样:
<?php
$installer = $this;
$installer->addEntityType('complexworld_eavblogpost',
Array(
'entity_model'=>'complexworld/eavblogpost',
'attribute_model'=>'',
'table'=>'complexworld/eavblogpost',
'increment_model'=>'',eav/entity_increment_numeric
'increment_per_store'=>'0'
));
$installer->createEntityTables(
$this->getTable('complexworld/eavblogpost')
);
我怎样才能让我的安装脚本工作?这是一个已知的 magento 错误吗?