startSetup(); try { $table = $installer->getTable('sales_flat_quote_address'); $installer->run("ALTER TABLE $table ADD droppoint int(1) NOT NULL DEFAULT 0;"); } catch(Exception $e) { Mage::log($e->getMessage(),null,'gls.log',true); } try { $table = $installer->getTable('sales_flat_order_address'); $installer->run("ALTER TABLE $table ADD droppoint int(1) NOT NULL DEFAULT 0;"); } catch(Exception $e) { Mage::log($e->getMessage(),null,'gls.log',true); } $installer->endSetup();