Skip to content

Commit

Permalink
OM PR 4226
Browse files Browse the repository at this point in the history
  • Loading branch information
fballiano committed Sep 25, 2024
1 parent d5f04ae commit ea5f937
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/core/Mage/Widget/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<config>
<modules>
<Mage_Widget>
<version>1.6.0.0</version>
<version>1.6.0.1</version>
</Mage_Widget>
</modules>
<global>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?php
/**
* Maho
*
* @category Mage
* @package Mage_Widget
* @copyright Copyright (c) 2024 The OpenMage Contributors (https://openmage.org)
* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
*/

/** @var Mage_Core_Model_Resource_Setup $installer */
$installer = $this;
$installer->startSetup();

$installer->getConnection()->changeColumn(
$installer->getTable('widget/widget_instance_page'),
'page_group',
'page_group',
[
'type' => Varien_Db_Ddl_Table::TYPE_TEXT,
'length' => 255
]
);

$installer->getConnection()->changeColumn(
$installer->getTable('widget/widget_instance_page'),
'page_for',
'page_for',
[
'type' => Varien_Db_Ddl_Table::TYPE_TEXT,
'length' => 255
]
);

0 comments on commit ea5f937

Please sign in to comment.