我是magento的新手。我需要在 Magento 中创建自己的模块(或)扩展。在我的模块中,无法在 magento 表中创建表。我正在使用此代码。
File:/app/code/local/com_name/module_name/sql/module_setup/mysql4_install-0.1.0.php
$installer = $this;
$installer->startSetup();
$installer->run("
DROP TABLE IF EXISTS {$this->getTable('th_tweet')};
CREATE TABLE {$this->getTable('th_tweet')} (
`tweet_id` int(11) NOT NULL AUTO_INCREMENT,
`updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`twitter_id` bigint(20) NOT NULL,
`text` text NOT NULL,
PRIMARY KEY (`tweet_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
");
$installer->endSetup();
然后,可以像这样调用 config.xml 文件,
<models>
<tweet>
<class>TechAndHouse_Tweet_Model</class>
<resourceModel>tweet_mysql4</resourceModel>
</tweet>
<tweet_mysql4>
<class>TechAndHouse_Tweet_Model_Mysql4</class>
<entities>
<tweet>
<table>th_tweet</table>
</tweet>
</entities>
</tweet_mysql4>
</models>
我在管理面板中创建选项卡并创建了前端块,但我无法为我的自定义模块创建表。如何为我的自定义模块创建表格?
任何帮助,将不胜感激。