Skip to content

Commit

Permalink
add versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
MauricioMurga committed Dec 19, 2014
1 parent b8f78c8 commit 185ea1b
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 7 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,6 @@
=== 0.3.1 2014-11-27
* Fix SPEI db columns.
* Add dynamic currency.
* Add dynamic language.
* Add dynamic language.
=== 0.3.2 2014-11-27
* Remove Amasty from plugin completely.
2 changes: 1 addition & 1 deletion app/code/community/Conekta/Bank/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<config>
<modules>
<Conekta_Bank>
<version>0.3.1</version>
<version>0.3.2</version>
</Conekta_Bank>
</modules>
<frontend>
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Conekta/Card/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<config>
<modules>
<Conekta_Card>
<version>0.3.1</version>
<version>0.3.2</version>
</Conekta_Card>
</modules>
<frontend>
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Conekta/Oxxo/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<config>
<modules>
<Conekta_Oxxo>
<version>0.3.1</version>
<version>0.3.2</version>
</Conekta_Oxxo>
</modules>
<frontend>
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Conekta/Realtime/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<config>
<modules>
<Conekta_Realtime>
<version>0.3.1</version>
<version>0.3.2</version>
</Conekta_Realtime>
</modules>
<frontend>
Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Conekta/Spei/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<config>
<modules>
<Conekta_Spei>
<version>0.3.1</version>
<version>0.3.2</version>
</Conekta_Spei>
</modules>
<frontend>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?php
$installer = $this;
/* @var $installer Mage_Customer_Model_Entity_Setup */

$installer->startSetup();

$connection = $installer->getConnection();
$connection->addColumn($installer->getTable('sales/order_payment'), 'spei_bank', array(
'type' => Varien_Db_Ddl_Table::TYPE_TEXT,
'length' => '255',
'comment' => 'Spei Bank'
));

$connection->dropColumn($installer->getTable('sales/order_payment'), 'oxxo_bank');
$connection->dropColumn($installer->getTable('sales/quote_payment'), 'spei_expiry_date');
$connection->dropColumn($installer->getTable('sales/order_payment'), 'spei_expiry_date');


$installer->endSetup();
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php
$installer = $this;
/* @var $installer Mage_Customer_Model_Entity_Setup */
$installer->startSetup();
$installer->endSetup();
2 changes: 1 addition & 1 deletion app/code/community/Conekta/Webhook/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<config>
<modules>
<Conekta_Webhook>
<version>0.2.9</version>
<version>0.3.2</version>
</Conekta_Webhook>
</modules>
<frontend>
Expand Down

0 comments on commit 185ea1b

Please sign in to comment.