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のバグですか?