How to create table for custom module in magento?
I am new in magento. I need to create my own module (or) extension in Magento. In my module, table cannot be created in the magento table. I am using this code. 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