startSetup(); try { $table = $installer->getTable('sales_flat_quote_address'); $installer->run("ALTER TABLE $table CHANGE `droppoint` `droppoint` VARCHAR( 32 ) 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 CHANGE `droppoint` `droppoint` VARCHAR( 32 ) NOT NULL DEFAULT '0'"); } catch(Exception $e) { Mage::log($e->getMessage(),null,'gls.log',true); } $installer->endSetup();