getConnection('rewardpoints_read'); $select = $connection->select() ->from('information_schema.COLUMNS') ->where("COLUMN_NAME='rewardpoints_referral_name' AND TABLE_NAME='{$this->getTable('rewardpoints_referral')}'"); $data = $connection->fetchRow($select); if(!isset($data['COLUMN_NAME'])){ $installer = $this; /* @var $installer Mage_Core_Model_Resource_Setup */ $installer->startSetup(); $installer->run(" ALTER TABLE {$this->getTable('rewardpoints_referral')} ADD COLUMN `rewardpoints_referral_name` VARCHAR( 255 ) NULL AFTER `rewardpoints_referral_email`; "); $installer->endSetup(); }