Skip to content

Instantly share code, notes, and snippets.

@amacgregor
Last active December 16, 2015 18:29
Show Gist options
  • Save amacgregor/5478084 to your computer and use it in GitHub Desktop.
Save amacgregor/5478084 to your computer and use it in GitHub Desktop.
Errata 02 Code After
<?php
$resource = Mage::getModel('core/resource');
$write = $resource->getConnection('core_write');
$tablename = $resource->getTableName('cataloginventory/stock_item');
$query = "UPDATE {$tablename} SET `is_in_stock` = 1";
$write->query($query);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment