I have used this file for an extension of mine to add a new table but it doesn't run and gives error. Here is the code for my script.
$installer = $this;
$installer->startSetup();
$installer->run("
-- DROP TABLE IF EXISTS ` magebuzz_testimonial_store`;
CREATE TABLE ` magebuzz_testimonial_store` (
`testimonial_id` INT(10) UNSIGNED NOT NULL,
`store_id` VARCHAR(11) NOT NULL,
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Testimonials Store Table';
");
$installer->endSetup();
Can anyone please tell me where am i going wrong with this? Thanks.