We will be off on April 7th (Monday) for public holiday in our country

Commit 3998a743 authored by acampos1916's avatar acampos1916

New version to trigger upgrade scripts is 7.0.0

parent 13b3955d
......@@ -71,8 +71,8 @@ class UpgradeSchema implements UpgradeSchemaInterface
$this->updateSchemaVersion540($setup);
}
if (version_compare($context->getVersion(), '6.7.0', '<')) {
$this->updateSchemaVersion670($setup);
if (version_compare($context->getVersion(), '7.0.0', '<')) {
$this->updateSchemaVersion700($setup);
}
$setup->endSetup();
......@@ -408,14 +408,14 @@ class UpgradeSchema implements UpgradeSchemaInterface
}
/**
* Upgrade to 6.7.0
* Upgrade to 7.0.0
*
* New sales_order column for the currency charged based on the Adyen config option (base or display)
*
* @param SchemaSetupInterface $setup
* @return void
*/
public function updateSchemaVersion670(SchemaSetupInterface $setup)
public function updateSchemaVersion700(SchemaSetupInterface $setup)
{
$connection = $setup->getConnection();
$tableName = $setup->getTable('sales_order');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment