function amazon_update_6011 in Amazon Product Advertisement API 6
Add Customer Reviews table so we can handle that.
Return value
unknown_type
File
- ./
amazon.install, line 293
Code
function amazon_update_6011() {
$schema = amazon_schema();
if (!db_table_exists('amazon_item_customer_review')) {
db_create_table($ret, 'amazon_item_customer_review', $schema['amazon_item_customer_review']);
}
return $ret;
}