00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 $installer = $this;
00028
00029
00030 $installer->startSetup();
00031
00032 $installer->run("
00033
00034 -- DROP TABLE IF EXISTS {$this->getTable('shipping_tablerate')};
00035 CREATE TABLE {$this->getTable('shipping_tablerate')} (
00036 `pk` int(10) unsigned NOT NULL auto_increment,
00037 `website_id` int(11) NOT NULL default '0',
00038 `dest_country_id` varchar(4) NOT NULL default '0',
00039 `dest_region_id` int(10) NOT NULL default '0',
00040 `dest_zip` varchar(10) NOT NULL default '',
00041 `condition_name` varchar(20) NOT NULL default '',
00042 `condition_value` decimal(12,4) NOT NULL default '0.0000',
00043 `price` decimal(12,4) NOT NULL default '0.0000',
00044 `cost` decimal(12,4) NOT NULL default '0.0000',
00045 PRIMARY KEY (`pk`),
00046 UNIQUE KEY `dest_country` (`website_id`,`dest_country_id`,`dest_region_id`,`dest_zip`,`condition_name`,`condition_value`)
00047 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
00048
00049 ");
00050
00051 $installer->endSetup();