Create a new table from magento module
问题 I am trying to have an admin module I am working on create a new table in the database. What I have setup in app/code/local/Foo/BAR/sql/mysql4-install-0.1.0.php <?php $installer = $this; $installer->startSetup(); $installer->run(" DROP TABLE IF EXISTS {$this->getTable('notes')}; CREATE TABLE {$this->getTable('notes')} ( `ppr_id` int(11) NOT NULL AUTO_INCREMENT, `notesku` bigint(20) NOT NULL, `notestatus` smallint(16), PRIMARY KEY (`notes`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 "); $installer-