Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
timoj committed Sep 15, 2017
1 parent 073e0ac commit 43e88cc
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/community/Wuunder/WuunderConnector/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<config>
<modules>
<Wuunder_WuunderConnector>
<version>3.0.2</version>
<version>3.0.3</version>
</Wuunder_WuunderConnector>
</modules>
<global>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

$installer = $this;
//$installer->installEntities();
Mage::log('running script', null, 'services_upgrade.log');

$installer->startSetup();
$installer->getConnection()->addColumn($this->getTable('wuunder_shipments'), 'label_tt_url', array(
'type' => Varien_Db_Ddl_Table::TYPE_TEXT,
'nullable' => true,
'default' => null,
'comment' => 'label_tt_url'
));

$installer->endSetup();

0 comments on commit 43e88cc

Please sign in to comment.