Version Notes
1 - The export csv option is currently disabled. This is so the extension does not conflict with the existing tablerates. There are no plans to resolve this - if you need to view the data look in phpmyadmin.
Download this release
Release Info
| Developer | Magento Core Team |
| Extension | Auctionmaid_Matrxrate |
| Version | 2.0.8 |
| Comparing to | |
| See all releases | |
Code changes from version 2.0.7 to 2.0.8
app/code/community/Auctionmaid/Matrixrate/sql/matrixrate_setup/mysql4-install-2.0.1.php
CHANGED
|
@@ -12,7 +12,7 @@ CREATE TABLE {$this->getTable('shipping_matrixrate')} (
|
|
| 12 |
website_id int(11) NOT NULL default '0',
|
| 13 |
dest_country_id varchar(4) NOT NULL default '0',
|
| 14 |
dest_region_id int(10) NOT NULL default '0',
|
| 15 |
-
dest_city varchar(
|
| 16 |
dest_zip varchar(10) NOT NULL default '',
|
| 17 |
dest_zip_to varchar(10) NOT NULL default '',
|
| 18 |
condition_name varchar(20) NOT NULL default '',
|
| 12 |
website_id int(11) NOT NULL default '0',
|
| 13 |
dest_country_id varchar(4) NOT NULL default '0',
|
| 14 |
dest_region_id int(10) NOT NULL default '0',
|
| 15 |
+
dest_city varchar(30) NOT NULL default '',
|
| 16 |
dest_zip varchar(10) NOT NULL default '',
|
| 17 |
dest_zip_to varchar(10) NOT NULL default '',
|
| 18 |
condition_name varchar(20) NOT NULL default '',
|
app/code/community/Auctionmaid/Matrixrate/sql/matrixrate_setup/mysql4-uninstall-2.0.1.php
CHANGED
|
@@ -5,6 +5,7 @@ $installer->startSetup();
|
|
| 5 |
|
| 6 |
$installer->run("
|
| 7 |
DROP TABLE IF EXISTS {$this->getTable('shipping_matrixrate')};
|
|
|
|
| 8 |
DELETE FROM {$this->getTable('core/config_data')} WHERE path like 'carriers/matrixrate/%';
|
| 9 |
DELETE FROM {$this->getTable('eav_attribute')} WHERE attribute_code = 'exclude_free_shipping';
|
| 10 |
");
|
| 5 |
|
| 6 |
$installer->run("
|
| 7 |
DROP TABLE IF EXISTS {$this->getTable('shipping_matrixrate')};
|
| 8 |
+
DELETE FROM {$this->getTable('core/config_data')} WHERE path like 'carriers/freeoptionalshipping/%';
|
| 9 |
DELETE FROM {$this->getTable('core/config_data')} WHERE path like 'carriers/matrixrate/%';
|
| 10 |
DELETE FROM {$this->getTable('eav_attribute')} WHERE attribute_code = 'exclude_free_shipping';
|
| 11 |
");
|
app/code/community/Auctionmaid/docs/manual install.sql
CHANGED
|
@@ -3,7 +3,7 @@ CREATE TABLE shipping_matrixrate (
|
|
| 3 |
website_id int(11) NOT NULL default '0',
|
| 4 |
dest_country_id varchar(4) NOT NULL default '0',
|
| 5 |
dest_region_id int(10) NOT NULL default '0',
|
| 6 |
-
dest_city varchar(
|
| 7 |
dest_zip varchar(10) NOT NULL default '',
|
| 8 |
dest_zip_to varchar(10) NOT NULL default '',
|
| 9 |
condition_name varchar(20) NOT NULL default '',
|
| 3 |
website_id int(11) NOT NULL default '0',
|
| 4 |
dest_country_id varchar(4) NOT NULL default '0',
|
| 5 |
dest_region_id int(10) NOT NULL default '0',
|
| 6 |
+
dest_city varchar(30) NOT NULL default '',
|
| 7 |
dest_zip varchar(10) NOT NULL default '',
|
| 8 |
dest_zip_to varchar(10) NOT NULL default '',
|
| 9 |
condition_name varchar(20) NOT NULL default '',
|
