Skip to content

Commit

Permalink
[IC] updated runafter
Browse files Browse the repository at this point in the history
  • Loading branch information
datazen committed Mar 18, 2014
1 parent 861b68c commit 82385e4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions catalog/includes/work/updates/runAfter/controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,11 @@ public static function updateDB() {
$lC_Database->simpleQuery("ALTER IGNORE TABLE `" . $pf . "branding` ADD `homepage_text` VARCHAR(20000) NOT NULL DEFAULT '' AFTER `language_id`;");
parent::log("Database Update: ALTER IGNORE TABLE `" . $pf . "branding` ADD `homepage_text` VARCHAR(20000) NOT NULL DEFAULT '' AFTER `language_id`;");

$lC_Database->simpleQuery("UPDATE `" . $pf . "currencies` SET `symbol_left` = '€' where `code` = 'EUR'");
parent::log("Database Update: UPDATE `" . $pf . "currencies` SET `symbol_left` = '€' where `code` = 'EUR'");

$lC_Database->simpleQuery("UPDATE `" . $pf . "currencies` SET `symbol_left` = '£' where `code` = 'GBP'");
parent::log("Database Update: UPDATE `" . $pf . "currencies` SET `symbol_left` = '£' where `code` = 'GBP'");
}
}
?>

0 comments on commit 82385e4

Please sign in to comment.