This repository has been archived by the owner on Mar 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
sql-install.php
executable file
·90 lines (82 loc) · 4.06 KB
/
sql-install.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
// Init
$sql = array();
// Create Service Table in Database
$sql[] = 'CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'fedex_rate_service_code` (
`id_fedex_rate_service_code` int(10) NOT NULL AUTO_INCREMENT,
`id_carrier` int(10) NOT NULL,
`id_carrier_history` text NOT NULL,
`code` varchar(64) NOT NULL,
`service` varchar(255) NOT NULL,
`active` tinyint(1) NOT NULL,
UNIQUE(`code`, `service`),
PRIMARY KEY (`id_fedex_rate_service_code`)
) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=utf8;';
// Insert Service in database
$sql[] = "INSERT IGNORE INTO `"._DB_PREFIX_."fedex_rate_service_code` (`id_carrier`, `id_carrier_history`, `code`, `service`, `active`) VALUES
('0', '', 'EUROPE_FIRST_INTERNATIONAL_PRIORITY', 'Europe first international priority', '0'),
('0', '', 'FEDEX_1_DAY_FREIGHT', 'Fedex 1 day freight', '0'),
('0', '', 'FEDEX_2_DAY', 'Fedex 2 day', '0'),
('0', '', 'FEDEX_2_DAY_FREIGHT', 'Fedex 2 day freight', '0'),
('0', '', 'FEDEX_3_DAY_FREIGHT', 'Fedex 3 day freight', '0'),
('0', '', 'FEDEX_EXPRESS_SAVER', 'Fedex express saver', '0'),
('0', '', 'FEDEX_FREIGHT', 'Fedex freight', '0'),
('0', '', 'FEDEX_GROUND', 'Fedex ground', '0'),
('0', '', 'FEDEX_NATIONAL_FREIGHT', 'Fedex national freight', '0'),
('0', '', 'FIRST_OVERNIGHT', 'First overnight', '0'),
('0', '', 'GROUND_HOME_DELIVERY', 'Ground home delivery', '0'),
('0', '', 'INTERNATIONAL_ECONOMY', 'International economy', '0'),
('0', '', 'INTERNATIONAL_ECONOMY_FREIGHT', 'International economy freight', '0'),
('0', '', 'INTERNATIONAL_FIRST', 'International first', '0'),
('0', '', 'INTERNATIONAL_GROUND', 'International ground', '0'),
('0', '', 'INTERNATIONAL_PRIORITY', 'International priority', '0'),
('0', '', 'INTERNATIONAL_PRIORITY_FREIGHT', 'International priority freight', '0'),
('0', '', 'PRIORITY_OVERNIGHT', 'Priority overnight', '0'),
('0', '', 'SMART_POST', 'Smart post', '0'),
('0', '', 'STANDARD_OVERNIGHT', 'Standard overnight', '0');";
// Create Cache Table in Database
$sql[] = 'CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'fedex_cache` (
`id_fedex_cache` int(10) NOT NULL AUTO_INCREMENT,
`id_cart` int(10) NOT NULL,
`id_carrier` int(10) NOT NULL,
`hash` varchar(32) NOT NULL,
`id_currency` int(10) NOT NULL,
`total_charges` double(10,2) NOT NULL,
`is_available` tinyint(1) NOT NULL,
`date_add` datetime NOT NULL,
`date_upd` datetime NOT NULL,
PRIMARY KEY (`id_fedex_cache`),
KEY `id_cart` (`id_cart`,`id_carrier`,`hash`)
) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=utf8; ';
// Create Test Cache Table in Database
$sql[] = 'CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'fedex_cache_test` (
`id_fedex_cache_test` int(10) NOT NULL AUTO_INCREMENT,
`hash` varchar(1024) NOT NULL,
`result` text NOT NULL,
`date_add` datetime NOT NULL,
`date_upd` datetime NOT NULL,
PRIMARY KEY (`id_fedex_cache_test`)
) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=utf8;';
// Create Config Table in Database
$sql[] = 'CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'fedex_rate_config` (
`id_fedex_rate_config` int(10) NOT NULL AUTO_INCREMENT,
`id_product` int(10) NOT NULL,
`id_category` int(10) NOT NULL,
`id_currency` int(10) NOT NULL,
`pickup_type_code` varchar(64) NOT NULL,
`packaging_type_code` varchar(64) NOT NULL,
`additional_charges` double(6,2) NOT NULL,
`date_add` datetime NOT NULL,
`date_upd` datetime NOT NULL,
PRIMARY KEY (`id_fedex_rate_config`)
) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=utf8;';
// Create Config (Service) Table in Database
$sql[] = 'CREATE TABLE IF NOT EXISTS `'._DB_PREFIX_.'fedex_rate_config_service` (
`id_fedex_rate_config_service` int(10) NOT NULL AUTO_INCREMENT,
`id_fedex_rate_service_code` int(10) NOT NULL,
`id_fedex_rate_config` int(10) NOT NULL,
`date_add` datetime NOT NULL,
`date_upd` datetime NOT NULL,
PRIMARY KEY (`id_fedex_rate_config_service`)
) ENGINE='._MYSQL_ENGINE_.' DEFAULT CHARSET=utf8;';
?>