startSetup(); $this->run(" DROP TABLE IF EXISTS {$this->getTable('magecon_customer_notes')}; CREATE TABLE {$this->getTable('magecon_customer_notes')} ( `note_id` int(10) unsigned NOT NULL AUTO_INCREMENT, `user_id` int(10) unsigned NOT NULL, `username` varchar(15) NOT NULL, `customer_id` int(10) unsigned NOT NULL, `customer_name` varchar(30) NOT NULL, `note` text CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL, `created_time` datetime NOT NULL, PRIMARY KEY (`note_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; "); $this->endSetup(); ?>