startSetup(); $installer->updateAttribute('catalog_product', 'disable_googlecheckout', array( 'attribute_code' => 'enable_googlecheckout', 'frontend_label' => 'Is Product Available for Purchase with Google Checkout', )); $attribute = $installer->getAttribute('catalog_product', 'enable_googlecheckout'); if (!empty($attribute['attribute_id'])) { $installer->run(" UPDATE `{$installer->getAttributeTable('catalog_product', 'enable_googlecheckout')}` SET `value` = ! `value` WHERE `attribute_id` = {$attribute['attribute_id']} "); } $installer->endSetup();