// fix fatal error on installer when show columns error in migrate_orders, thanks to Rémi :)

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16049 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mMarinetti
2012-06-18 11:29:12 +00:00
parent 0445e6f140
commit 7c9d5e5efa
@@ -39,7 +39,10 @@ function migrate_orders()
$values_order_detail = array();
$col_order_detail = Db::getInstance()->query('SHOW FIELDS FROM `'._DB_PREFIX_.'order_detail`');
if (!$col_order_detail)
{
$array_errors[] = 'unable to get fields list from order_detail table';
return false;
}
$col_order_detail = $col_order_detail->fetchAll(PDO::FETCH_COLUMN);
$insert_order_detail = 'INSERT INTO `'._DB_PREFIX_.'order_detail_2` (`'.implode('`, `', $col_order_detail).'`) VALUES ';