-
Notifications
You must be signed in to change notification settings - Fork 1
/
adorama.sql
4331 lines (3791 loc) · 381 KB
/
adorama.sql
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- MySQL dump 10.13 Distrib 5.5.46, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: adorama
-- ------------------------------------------------------
-- Server version 5.5.46-0ubuntu0.14.04.2
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `exp_accessories`
--
DROP TABLE IF EXISTS `exp_accessories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_accessories` (
`accessory_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`class` varchar(75) NOT NULL DEFAULT '',
`member_groups` varchar(255) NOT NULL DEFAULT 'all',
`controllers` text,
`accessory_version` varchar(12) NOT NULL,
PRIMARY KEY (`accessory_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_accessories`
--
LOCK TABLES `exp_accessories` WRITE;
/*!40000 ALTER TABLE `exp_accessories` DISABLE KEYS */;
INSERT INTO `exp_accessories` VALUES (1,'Expressionengine_info_acc','1|5','addons|addons_accessories|addons_extensions|addons_fieldtypes|addons_modules|addons_plugins|admin_content|admin_system|content|content_edit|content_files|content_files_modal|content_publish|design|homepage|members|myaccount|tools|tools_communicate|tools_data|tools_logs|tools_utilities','1.0');
/*!40000 ALTER TABLE `exp_accessories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_actions`
--
DROP TABLE IF EXISTS `exp_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_actions` (
`action_id` int(4) unsigned NOT NULL AUTO_INCREMENT,
`class` varchar(50) NOT NULL,
`method` varchar(50) NOT NULL,
`csrf_exempt` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`action_id`)
) ENGINE=MyISAM AUTO_INCREMENT=93 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_actions`
--
LOCK TABLES `exp_actions` WRITE;
/*!40000 ALTER TABLE `exp_actions` DISABLE KEYS */;
INSERT INTO `exp_actions` VALUES (1,'Search','do_search',1),(2,'Channel','submit_entry',0),(3,'Channel','filemanager_endpoint',0),(4,'Channel','smiley_pop',0),(5,'Channel','combo_loader',0),(6,'Member','registration_form',0),(7,'Member','register_member',0),(8,'Member','activate_member',0),(9,'Member','member_login',0),(10,'Member','member_logout',0),(11,'Member','send_reset_token',0),(12,'Member','process_reset_password',0),(13,'Member','send_member_email',0),(14,'Member','update_un_pw',0),(15,'Member','member_search',0),(16,'Member','member_delete',0),(17,'Rte','get_js',0),(18,'Mailinglist','insert_new_email',0),(19,'Mailinglist','authorize_email',0),(20,'Mailinglist','unsubscribe',0),(21,'Email','send_email',0),(22,'Comment','insert_new_comment',0),(23,'Comment_mcp','delete_comment_notification',0),(24,'Comment','comment_subscribe',0),(25,'Comment','edit_comment',0),(26,'Upload','uploads',0),(27,'Upload','fetch',0),(28,'Upload','resize',0),(29,'Upload','delete',0),(30,'Upload','get',0),(31,'Upload','list_files',0),(32,'Upload','housekeeping',0),(43,'Brilliant_retail','cart_update',0),(42,'Brilliant_retail','cart_clear',0),(41,'Brilliant_retail','cart_remove',0),(40,'Brilliant_retail','cart_add',0),(44,'Brilliant_retail','checkout',0),(45,'Brilliant_retail','checkout_shipping',0),(46,'Brilliant_retail','checkout_total',0),(47,'Brilliant_retail','promo_check_code',0),(48,'Brilliant_retail','customer_register',0),(49,'Brilliant_retail','customer_profile_update',0),(50,'Brilliant_retail','customer_pw_update',0),(51,'Brilliant_retail','customer_download_file',0),(52,'Brilliant_retail','gateway_ipn',1),(53,'Brilliant_retail','process_ipn',1),(54,'Brilliant_retail','pull_feed',0),(55,'Brilliant_retail','retrieve_password',0),(56,'Brilliant_retail','wishlist_process',0),(57,'Brilliant_retail','customer_download_note',0),(58,'Brilliant_retail','reset_password',0),(59,'Brilliant_retail_mcp','product_img_update',0),(60,'Brilliant_retail_mcp','product_add_atributes',0),(61,'Brilliant_retail_mcp','product_search',0),(62,'Brilliant_retail_mcp','product_download_update',0),(63,'Brilliant_retail_mcp','product_configurable_create_options',0),(64,'Brilliant_retail_mcp','download_upload',0),(65,'Brilliant_retail_mcp','s3_get_files',0),(81,'PhotoPrint','quantity',0),(80,'PhotoPrint','canvas',0),(79,'PhotoPrint','cover',0),(78,'PhotoPrint','size',0),(77,'PhotoPrint','product',0),(76,'PhotoPrint','get_image',0),(75,'PhotoPrint','arrange',0),(82,'PhotoPrint','border',0),(83,'Photoprint','select',0),(84,'Ig_picpuller_lite','authorization',0),(85,'Ig_picpuller_lite','deauthorization',0),(86,'Freemember','act_login',0),(87,'Freemember','act_logout',0),(88,'Freemember','act_register',0),(89,'Freemember','act_update_profile',0),(90,'Freemember','act_forgot_password',0),(91,'Freemember','act_reset_password',0),(92,'PhotoPrint','delete_selection',0);
/*!40000 ALTER TABLE `exp_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_admin_access`
--
DROP TABLE IF EXISTS `exp_br_admin_access`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_admin_access` (
`admin_access_id` int(11) NOT NULL AUTO_INCREMENT,
`site_id` int(11) NOT NULL DEFAULT '1',
`group_id` int(11) NOT NULL DEFAULT '1',
`class` varchar(255) NOT NULL,
`method` varchar(255) NOT NULL,
`created` datetime NOT NULL,
PRIMARY KEY (`admin_access_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_admin_access`
--
LOCK TABLES `exp_br_admin_access` WRITE;
/*!40000 ALTER TABLE `exp_br_admin_access` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_admin_access` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_attribute`
--
DROP TABLE IF EXISTS `exp_br_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_attribute` (
`attribute_id` int(11) NOT NULL AUTO_INCREMENT,
`site_id` int(11) NOT NULL DEFAULT '1',
`title` varchar(50) NOT NULL,
`code` varchar(50) NOT NULL,
`required` int(11) NOT NULL DEFAULT '0',
`fieldtype` varchar(255) NOT NULL,
`filterable` int(11) NOT NULL DEFAULT '1',
`default_text` varchar(255) DEFAULT NULL,
`options` text,
PRIMARY KEY (`attribute_id`)
) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_attribute`
--
LOCK TABLES `exp_br_attribute` WRITE;
/*!40000 ALTER TABLE `exp_br_attribute` DISABLE KEYS */;
INSERT INTO `exp_br_attribute` VALUES (22,1,'Notes','notes',0,'textarea',1,'',''),(19,1,'Color','color',0,'dropdown',1,'','Black\nBlue\nBrown\nGray\nGreen\nOrange\nRed\nWhite\nYellow'),(27,1,'File','file',0,'file',1,'',''),(21,1,'Size','size',0,'dropdown',1,'','X-Small\nSmall\nMedium\nLarge\nX-Large\nXX-Large'),(28,1,'Layout','lay',1,'text',1,'',NULL),(30,1,'Quantity','qty',0,'text',1,'',NULL),(31,1,'Layout Action','next',0,'text',1,'',NULL),(32,1,'Border','border',0,'text',1,'',NULL);
/*!40000 ALTER TABLE `exp_br_attribute` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_attribute_option`
--
DROP TABLE IF EXISTS `exp_br_attribute_option`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_attribute_option` (
`attr_option_id` int(11) NOT NULL AUTO_INCREMENT,
`attribute_id` int(11) DEFAULT NULL,
`label` varchar(100) DEFAULT NULL,
`sort` int(11) DEFAULT NULL,
`created` datetime DEFAULT NULL,
PRIMARY KEY (`attr_option_id`),
KEY `br_attribute_id` (`attribute_id`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_attribute_option`
--
LOCK TABLES `exp_br_attribute_option` WRITE;
/*!40000 ALTER TABLE `exp_br_attribute_option` DISABLE KEYS */;
INSERT INTO `exp_br_attribute_option` VALUES (11,21,'Small',4,'2013-09-23 10:21:42'),(12,21,'Medium',5,'2013-09-23 10:21:42'),(13,21,'Large',6,'2013-09-23 10:21:42'),(14,21,'X-Large',7,'2013-09-23 10:21:42'),(22,29,'12',2,NULL),(23,29,'24',3,NULL),(24,29,'8',1,NULL);
/*!40000 ALTER TABLE `exp_br_attribute_option` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_attribute_set`
--
DROP TABLE IF EXISTS `exp_br_attribute_set`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_attribute_set` (
`attribute_set_id` int(11) NOT NULL AUTO_INCREMENT,
`site_id` int(11) NOT NULL DEFAULT '1',
`title` varchar(255) NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`sort_order` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`attribute_set_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_attribute_set`
--
LOCK TABLES `exp_br_attribute_set` WRITE;
/*!40000 ALTER TABLE `exp_br_attribute_set` DISABLE KEYS */;
INSERT INTO `exp_br_attribute_set` VALUES (1,1,'Layout','2015-10-11 18:07:08',1);
/*!40000 ALTER TABLE `exp_br_attribute_set` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_attribute_set_attribute`
--
DROP TABLE IF EXISTS `exp_br_attribute_set_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_attribute_set_attribute` (
`atrribute_set_attribte_id` int(11) NOT NULL AUTO_INCREMENT,
`attribute_id` int(11) NOT NULL,
`attribute_set_id` int(11) NOT NULL,
`sort_order` int(11) NOT NULL,
PRIMARY KEY (`atrribute_set_attribte_id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_attribute_set_attribute`
--
LOCK TABLES `exp_br_attribute_set_attribute` WRITE;
/*!40000 ALTER TABLE `exp_br_attribute_set_attribute` DISABLE KEYS */;
INSERT INTO `exp_br_attribute_set_attribute` VALUES (6,28,1,1),(5,27,1,0),(7,31,1,2);
/*!40000 ALTER TABLE `exp_br_attribute_set_attribute` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_cart`
--
DROP TABLE IF EXISTS `exp_br_cart`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_cart` (
`cart_id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL DEFAULT '0',
`session_id` varchar(100) NOT NULL,
`order_id` int(11) DEFAULT NULL,
`content` text NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`updated` timestamp NULL DEFAULT NULL,
`status` int(11) NOT NULL DEFAULT '0',
`ip` varchar(100) NOT NULL,
`coupon_code` varchar(255) DEFAULT NULL,
`token` varchar(150) DEFAULT NULL,
PRIMARY KEY (`cart_id`)
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_cart`
--
LOCK TABLES `exp_br_cart` WRITE;
/*!40000 ALTER TABLE `exp_br_cart` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_cart` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_category`
--
DROP TABLE IF EXISTS `exp_br_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_category` (
`category_id` int(11) NOT NULL AUTO_INCREMENT,
`site_id` int(11) NOT NULL DEFAULT '1',
`parent_id` int(11) NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL,
`url_title` varchar(100) NOT NULL,
`image` varchar(100) NOT NULL DEFAULT '/media/images/cat_banner_01.jpg',
`meta_title` varchar(255) NOT NULL DEFAULT '',
`meta_descr` varchar(255) NOT NULL DEFAULT '',
`enabled` int(11) NOT NULL DEFAULT '1',
`meta_keyword` varchar(255) NOT NULL DEFAULT '',
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`sort` int(11) NOT NULL DEFAULT '0',
`template_path` varchar(100) DEFAULT NULL,
`detail` text,
PRIMARY KEY (`category_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_category`
--
LOCK TABLES `exp_br_category` WRITE;
/*!40000 ALTER TABLE `exp_br_category` DISABLE KEYS */;
INSERT INTO `exp_br_category` VALUES (1,1,0,'Products','/products','/media/images/cat_banner_01.jpg','','',1,'','2015-10-07 18:45:23',0,NULL,NULL),(2,1,0,'Accessories','accessories','/media/images/cat_banner_01.jpg','','',1,'','2015-10-11 17:38:34',-1444585114,NULL,NULL);
/*!40000 ALTER TABLE `exp_br_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_config`
--
DROP TABLE IF EXISTS `exp_br_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_config` (
`config_id` int(11) NOT NULL AUTO_INCREMENT,
`site_id` int(11) NOT NULL DEFAULT '1',
`title` varchar(255) NOT NULL,
`label` varchar(100) NOT NULL,
`code` varchar(100) NOT NULL,
`type` varchar(100) NOT NULL,
`enabled` int(11) NOT NULL DEFAULT '0',
`groups` varchar(100) NOT NULL DEFAULT '0',
`descr` varchar(255) NOT NULL,
`version` float(10,1) NOT NULL,
`sort` int(11) NOT NULL DEFAULT '1',
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`config_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_config`
--
LOCK TABLES `exp_br_config` WRITE;
/*!40000 ALTER TABLE `exp_br_config` DISABLE KEYS */;
INSERT INTO `exp_br_config` VALUES (1,1,'Status Codes','','status','system',1,'0','',0.0,1,'2015-10-07 18:45:21'),(2,1,'Free Shipping','Free Shipping','free','shipping',1,'0','Free shipping with a minimum purchase amount',1.0,1,'2015-10-07 18:45:21'),(4,1,'Order ID','Orders','order_id','system',1,'0','Orders',1.0,1,'2015-10-07 18:45:21'),(10,1,'Mail In','Bank Payment','mailin','gateway',1,'0','Allow users to mail in payment after the purchase.',0.5,1,'2015-11-24 09:38:20'),(6,1,'Pick up Instore','Pick up Instore','instore','shipping',1,'0','Allow the customer to pick up instore (no shipping)',1.0,1,'2015-10-19 22:27:25'),(7,1,'Pay at Store','Pay at Store','payatstore','gateway',1,'0','Allow users to make payment after the purchase when they collect.',0.5,0,'2015-10-21 01:26:25'),(9,1,'JNE Rates Matrix','JNE Shipping Rates','jne','shipping',1,'0','JNE Rates Matrix',1.0,1,'2015-10-21 03:38:05');
/*!40000 ALTER TABLE `exp_br_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_config_data`
--
DROP TABLE IF EXISTS `exp_br_config_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_config_data` (
`config_data_id` int(11) NOT NULL AUTO_INCREMENT,
`config_id` int(11) NOT NULL,
`label` varchar(100) NOT NULL,
`code` varchar(50) NOT NULL,
`type` varchar(30) NOT NULL,
`value` text,
`options` text,
`descr` text,
`required` int(11) NOT NULL DEFAULT '0',
`sort` int(11) NOT NULL,
PRIMARY KEY (`config_data_id`)
) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_config_data`
--
LOCK TABLES `exp_br_config_data` WRITE;
/*!40000 ALTER TABLE `exp_br_config_data` DISABLE KEYS */;
INSERT INTO `exp_br_config_data` VALUES (1,1,'New Order','','','1',NULL,NULL,0,0),(2,1,'Pending','','','2',NULL,NULL,0,0),(3,1,'Processing','','','3',NULL,NULL,0,0),(4,1,'Shipping','','','4',NULL,NULL,0,0),(5,1,'Complete','','','5',NULL,NULL,0,0),(6,2,'Enabled','enabled','dropdown','1','1:Yes|0:No',NULL,0,0),(7,2,'Label','label','text','Free Shipping',NULL,NULL,0,0),(8,2,'Countries','country','multiselect','a:1:{i:0;s:2:\"US\";}','AF:Afghanistan|AX:Aland Islands|AL:Albania|DZ:Algeria|AD:Andorra|AO:Angola|AI:Anguilla|AQ:Antarctica|AG:Antigua and Barbuda|AR:Argentina|AM:Armenia|AW:Aruba|AU:Australia|AT:Austria|AZ:Azerbaijan|BS:Bahamas|BH:Bahrain|BD:Bangladesh|BB:Barbados|BY:Belarus|BE:Belgium|BZ:Belize|BJ:Benin|BM:Bermuda|BT:Bhutan|BO:Bolivia|BA:Bosnia and Herzegovina|BW:Botswana|BV:Bouvet Island|BR:Brazil|IO:British Indian Ocean Territory|VG:British Virgin Islands|BN:Brunei|BG:Bulgaria|BF:Burkina Faso|BI:Burundi|KH:Cambodia|CM:Cameroon|CA:Canada|CV:Cape Verde|KY:Cayman Islands|CF:Central African Republic|TD:Chad|CL:Chile|CN:China|CX:Christmas Island|CC:Cocos [Keeling] Islands|CO:Colombia|KM:Comoros|CG:Congo - Brazzaville|CD:Congo - Kinshasa|CK:Cook Islands|CR:Costa Rica|CI:Cote d|HR:Croatia|CU:Cuba|CY:Cyprus|CZ:Czech Republic|DK:Denmark|DJ:Djibouti|DM:Dominica|DO:Dominican Republic|EC:Ecuador|EG:Egypt|SV:El Salvador|GQ:Equatorial Guinea|ER:Eritrea|EE:Estonia|ET:Ethiopia|FK:Falkland Islands|FO:Faroe Islands|FJ:Fiji|FI:Finland|FR:France|GF:French Guiana|PF:French Polynesia|TF:French Southern Territories|GA:Gabon|GM:Gambia|GE:Georgia|DE:Germany|GH:Ghana|GI:Gibraltar|GR:Greece|GL:Greenland|GD:Grenada|GP:Guadeloupe|GT:Guatemala|GN:Guinea|GW:Guinea-Bissau|GY:Guyana|HT:Haiti|HM:Heard Island and McDonald Islands|HN:Honduras|HK:Hong Kong SAR China|HU:Hungary|IS:Iceland|IN:India|ID:Indonesia|IR:Iran|IQ:Iraq|IE:Ireland|IM:Isle of Man|IL:Israel|IT:Italy|JM:Jamaica|JP:Japan|JO:Jordan|KZ:Kazakhstan|KE:Kenya|KI:Kiribati|KW:Kuwait|KG:Kyrgyzstan|LA:Laos|LV:Latvia|LB:Lebanon|LS:Lesotho|LR:Liberia|LY:Libya|LI:Liechtenstein|LT:Lithuania|LU:Luxembourg|MO:Macau SAR China|MK:Macedonia|MG:Madagascar|MW:Malawi|MY:Malaysia|MV:Maldives|ML:Mali|MT:Malta|MQ:Martinique|MR:Mauritania|MU:Mauritius|YT:Mayotte|MX:Mexico|FM:Micronesia|MD:Moldova|MC:Monaco|MN:Mongolia|MS:Montserrat|MA:Morocco|MZ:Mozambique|MM:Myanmar [Burma]|NA:Namibia|NR:Nauru|NP:Nepal|NL:Netherlands|AN:Netherlands Antilles|NC:New Caledonia|NZ:New Zealand|NI:Nicaragua|NE:Niger|NG:Nigeria|NU:Niue|NF:Norfolk Island|KP:North Korea|MP:Northern Mariana Islands|NO:Norway|OM:Oman|PK:Pakistan|PS:Palestinian Territories|PA:Panama|PG:Papua New Guinea|PY:Paraguay|PE:Peru|PH:Philippines|PN:Pitcairn Islands|PL:Poland|PT:Portugal|QA:Qatar|RE:Reunion|RO:Romania|RU:Russia|RW:Rwanda|SH:Saint Helena|KN:Saint Kitts and Nevis|LC:Saint Lucia|PM:Saint Pierre and Miquelon|VC:Saint Vincent and the Grenadines|WS:Samoa|SM:San Marino|ST:Sao Tome and Principe|SA:Saudi Arabia|SN:Senegal|SC:Seychelles|SL:Sierra Leone|SG:Singapore|SK:Slovakia|SI:Slovenia|SB:Solomon Islands|SO:Somalia|ZA:South Africa|GS:South Georgia and the South Sandwich Islands|KR:South Korea|ES:Spain|LK:Sri Lanka|SD:Sudan|SR:Suriname|SJ:Svalbard and Jan Mayen|SZ:Swaziland|SE:Sweden|CH:Switzerland|SY:Syria|TW:Taiwan|TJ:Tajikistan|TZ:Tanzania|TH:Thailand|TL:Timor-Leste|TG:Togo|TK:Tokelau|TO:Tonga|TT:Trinidad and Tobago|TN:Tunisia|TR:Turkey|TM:Turkmenistan|TC:Turks and Caicos Islands|TV:Tuvalu|UM:U.S. Minor Outlying Islands|UG:Uganda|UA:Ukraine|AE:United Arab Emirates|GB:United Kingdom|US:United States|UY:Uruguay|UZ:Uzbekistan|VU:Vanuatu|VA:Vatican City|VE:Venezuela|VN:Vietnam|WF:Wallis and Futuna|EH:Western Sahara|YE:Yemen|ZM:Zambia|ZW:Zimbabwe','Select countries where free shipping is available. Control + click to add multiple countries',0,1),(9,2,'Amount','amount','text','0',NULL,'Minimum amount for free shipping',0,2),(10,1,'Canceled','','','0',NULL,NULL,0,0),(11,4,'Order ID','','','10019',NULL,NULL,0,0),(17,6,'Label','label','text','Pick up Instore',NULL,NULL,0,0),(18,6,'Amount','amount','text','0',NULL,'Set the Amount for store Pickup',0,1),(24,9,'Label','label','text','JNE Shipping Rates',NULL,NULL,0,0),(25,9,'JNE ','jne','table','a:2:{i:1;a:9:{i:0;s:2:\"ID\";i:1;s:7:\"Jakarta\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:1:\"1\";i:6;s:1:\"1\";i:7;s:4:\"8000\";i:8;s:7:\"Jakarta\";}i:2;a:9:{i:0;s:2:\"ID\";i:1;s:7:\"Jakarta\";i:2;s:0:\"\";i:3;s:0:\"\";i:4;s:0:\"\";i:5;s:0:\"\";i:6;s:0:\"\";i:7;s:5:\"10000\";i:8;s:16:\"Same Day Service\";}}','country|state|zip_code|from_price|to_price|from_weight|to_weight|rate|label',NULL,0,1);
/*!40000 ALTER TABLE `exp_br_config_data` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_currencies`
--
DROP TABLE IF EXISTS `exp_br_currencies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_currencies` (
`currency_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`code` varchar(5) COLLATE utf8_unicode_ci NOT NULL,
`marker` varchar(10) COLLATE utf8_unicode_ci NOT NULL,
`value` float(10,5) NOT NULL,
`updated` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`currency_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_currencies`
--
LOCK TABLES `exp_br_currencies` WRITE;
/*!40000 ALTER TABLE `exp_br_currencies` DISABLE KEYS */;
INSERT INTO `exp_br_currencies` VALUES (1,'US Dollar','USD','$',1.00000,''),(2,'Indonesian Rupiah','IDR','Rp',1.00000,'');
/*!40000 ALTER TABLE `exp_br_currencies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_email`
--
DROP TABLE IF EXISTS `exp_br_email`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_email` (
`email_id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`version` float(10,2) NOT NULL,
`content` blob NOT NULL,
`site_id` int(11) NOT NULL DEFAULT '1',
`subject` varchar(100) NOT NULL,
`bcc_list` varchar(255) DEFAULT NULL,
`from_name` varchar(100) NOT NULL,
`from_email` varchar(100) NOT NULL,
PRIMARY KEY (`email_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_email`
--
LOCK TABLES `exp_br_email` WRITE;
/*!40000 ALTER TABLE `exp_br_email` DISABLE KEYS */;
INSERT INTO `exp_br_email` VALUES (1,'admin-order-payment',1.00,'<table width=\"100%\" cellpadding=\"10\" cellspacing=\"0\" bgcolor=\"#FFFFFF\" >\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"550\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td style=\"background-color:#FFFFFF;border-top:0px solid #000000;border-bottom:0px solid #FFCC66;text-align:right;\" align=\"center\"><span style=\"font-size:10px;color:#333333;line-height:200%;font-family:verdana;text-decoration:none;\">{site_name}</span></td>\n </tr>\n <tr>\n <td style=\"background-color:#FFFFFF;border-top:0px solid #FFFFFF;border-bottom:0px solid #333333;\"><center><a href=\"\"><IMG id=emailhead1 SRC=\"{media}/images/email-logo.jpg\" BORDER=\"0\" title=\"Your Company\" alt=\"Your Company\" align=\"center\"></a></center></td>\n </tr>\n </table>\n <table width=\"550\" cellpadding=\"20\" cellspacing=\"0\" bgcolor=\"#FFFFFF\">\n <tr>\n <td bgcolor=\"#FFFFFF\" valign=\"top\" style=\"font-size:12px;color:#000000;line-height:150%;font-family:trebuchet ms;\">\n <p>\n <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\">Hi {fname}.</span><br>\n A payment has been applied to your order.<br>\n </p>\n <p style=\"border:1px solid #f0f0f0; padding:14px 18px; background:#f3f3f3;\">\n <span style=\"font-size:14px;font-weight:bold;color:#333333; font-family:arial;line-height:140%\">Order Status </span> <br>\n <span style=\"font-size:12px;font-weight:bold;color:#333333;font-family:arial;line-height:140%\">Order #: </span>{order_id}<br>\n <span style=\"font-size:12px;font-weight:bold;color:#333333;font-family:arial;line-height:140%\">Status:</span>\n <span style=\"font-size:12px;font-weight:normal;color:#333333; font-family:arial;line-height:140%\"> {order_status} </span><br>\n </p>\n <p>\n <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\"> Thank you,<br>\n <span style=\"font-size:12px;color:#000000;line-height:200%;font-family:verdana;text-decoration:none;\">{site_name}</span></span> <br><br>\n If <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\">you have any questions <a href=\"{site_url}/contact\">contact us </a>. </span>\n </p></td>\n </tr>\n </table>\n </td>\n </tr>\n</table>',1,'A payment has been processed to order #{order_id}',NULL,'Adorama PrintShop','contact@adorama'),(2,'customer-account-new',1.00,'<table width=\"100%\" cellpadding=\"10\" cellspacing=\"0\" bgcolor=\"#FFFFFF\" >\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"550\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td style=\"background-color:#FFFFFF;border-top:0px solid #000000;border-bottom:0px solid #FFCC66;text-align:right;\" align=\"center\">\n <span style=\"font-size:10px;color:#333333;line-height:200%;font-family:verdana;text-decoration:none;\">\n {site_name}\n </span></td>\n </tr>\n <tr>\n <td style=\"background-color:#FFFFFF;border-top:0px solid #FFFFFF;border-bottom:0px solid #333333;\">\n <center>\n <a href=\"{site_url}\">\n <IMG id=emailhead1 SRC=\"{media}/images/email-logo.jpg\" border=\"0\" title=\"Your Company\" alt=\"Your Company\" align=\"center\"></a>\n </center></td>\n </tr>\n </table>\n<table width=\"550\" cellpadding=\"20\" cellspacing=\"0\" bgcolor=\"#FFFFFF\">\n<tr>\n<td bgcolor=\"#FFFFFF\" valign=\"top\" style=\"font-size:12px;color:#000000;line-height:150%;font-family:trebuchet ms;\">\n<p>\n<span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\">Welcome {fname},</span>\n<br />\n<br />\n{if activation_url != \'\'}\n \n <a href=\"{activation_url}\">Click here to activate</a> your new account. \n <br />\n <br />\n You can also cut and paste this link into your browser:\n <br />\n <br />\n {activation_url}\n <br />\n <br />\n\n{if:else}\n Your account has been created. \n <br />\n <br />\n To login go to <a href=\"{site_url}/customer\">{site_url}/customer</a>. <br />\n <br />\n{/if}\n\n\n<span style=\"font-size:16px;font-weight:bold;color:#333333; font-family:arial;line-height:140%\">New Account</span></p>\n<p style=\"border:1px solid #f0f0f0; padding:14px 18px; background:#f3f3f3;\">\n\n<span style=\"font-size:12px;font-weight:bold;color:#333333;font-family:arial;line-height:140%\">Login Email:</span><br />\n<span style=\"font-size:12px;font-weight:normal;color:#333333; font-family:arial;line-height:140%\"> {email} </span><br />\n<br />\n<span style=\"font-size:12px;font-weight:normal;color:#333333; font-family:arial;line-height:100%\">If you have questions about the status of your order please <a href=\"{site_url}/contact/\">contact us</a>.</span><br />\n</p>\n<p><span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\"> Thank you,<br />\n <span style=\"font-size:12px;color:#000000;line-height:200%;font-family:verdana;text-decoration:none;\">{site_name}</span></span> </p></td>\n</tr>\n </table></td>\n </tr>\n</table>',1,'Thank you for registering with {site_name}',NULL,'Adorama PrintShop','contact@adorama'),(3,'customer-order-new',1.00,'<table width=\"100%\" cellpadding=\"10\" cellspacing=\"0\" bgcolor=\"#FFFFFF\" >\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"550\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td style=\"background-color:#FFFFFF;border-top:0px solid #000000;border-bottom:0px solid #FFCC66;text-align:right;\" align=\"center\">\n <span style=\"font-size:10px;color:#333333;line-height:200%;font-family:verdana;text-decoration:none;\">\n {site_name}\n </span></td>\n </tr>\n <tr>\n <td style=\"background-color:#FFFFFF;border-top:0px solid #FFFFFF;border-bottom:0px solid #333333;\"><center><a href=\"\"><IMG id=emailhead1 SRC=\"{media}/images/email-logo.jpg\" border=\"0\" title=\"Your Company\" alt=\"Your Company\" align=\"center\"></a></center></td>\n </tr>\n </table>\n <table width=\"550\" cellpadding=\"20\" cellspacing=\"0\" bgcolor=\"#FFFFFF\">\n <tr>\n <td bgcolor=\"#FFFFFF\" valign=\"top\" style=\"font-size:12px;color:#000000;line-height:150%;font-family:trebuchet ms;\">\n <p>\n <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\">Thank you for your order {fname} {lname}.</span><br /><br />\n To view order details and files visit your account at <a href=\"{site_url}/customer\">{site_url}/customer</a>. If <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\">you have any questions <a href=\"{site_url}/contact\">contact us </a>. </span><br />\n <br />\n <span style=\"font-size:16px;font-weight:bold;color:#333333; font-family:arial;line-height:140%\">Order Confirmation</span>\n </p>\n <p style=\"border:1px solid #f0f0f0; padding:14px 18px; background:#f3f3f3;\">\n <span style=\"font-size:14px;font-weight:bold;color:#333333; font-family:arial;line-height:140%\">Purchasing Information</span> \n <br />\n \n {address}\n\n <span style=\"font-size:12px;font-weight:bold;color:#333333;font-family:arial;line-height:140%\">Billed To:</span><br />\n <span style=\"font-size:12px;font-weight:normal;color:#333333; font-family:arial;line-height:140%\">\n {billing_fname} {billing_lname}<br />\n {if \'{billing_company}\' != \'\'}{billing_company} <br />{/if}\n {billing_address1}<br /> \n {if \'{billing_address2}\' != \'\'}{billing_address2} <br />{/if}\n {billing_city}, {billing_state} {billing_zip}<br /> \n {billing_country}<br />{billing_phone}</span><br /><br />\n <span style=\"font-size:12px;font-weight:bold;color:#333333;font-family:arial;line-height:140%\">Shipped To:</span>\n <br />\n <span style=\"font-size:12px;font-weight:normal;color:#333333; font-family:arial;line-height:140%\">\n {shipping_fname} {shipping_lname}<br />\n {if \'{shipping_company}\' != \'\'}{shipping_company} <br />{/if}\n {shipping_address1} <br />\n {if \'{shipping_address2}\' != \'\'}{shipping_address2} <br />{/if}\n {shipping_city}, {shipping_state} {shipping_zip}<br /> {shipping_country}<br /> {shipping_phone}</span><br /><br />\n\n {/address}\n\n <span style=\"font-size:12px;font-weight:bold;color:#333333;font-family:arial;line-height:140%\">\n Payment Method:</span>\n \n <br />\n <br />\n {payment}\n Payment Type: {payment_type}<br />\n Approval: {approval}<br />\n Transaction ID: {transaction_id}<br />\n {/payment}\n <br /> \n <br />\n <span style=\"font-size:14px;font-weight:bold;color:#333333; font-family:arial;line-height:140%\">Order Summary</span> <br />\n <span style=\"font-size:12px;font-weight:bold;color:#333333;font-family:arial;line-height:140%\">Order #: </span>{order_id}<br />\n <span style=\"font-size:12px;font-weight:bold;color:#333333;font-family:arial;line-height:140%\">Delivery Method:</span><br />\n <span style=\"font-size:12px;font-weight:normal;color:#333333; font-family:arial;line-height:140%\"> {delivery_method} - {delivery_label}</span><br />\n <span style=\"font-size:12px;font-weight:bold;color:#333333;font-family:arial;line-height:140%\">Order Items:</span><br />\n <table style=\"background-color:#FFF\" width=\"100%\">\n <tr>\n <td colspan=\"2\" align=\"left\" style=\"background-color:#EBEBEB;padding-left:4px\">\n <span style=\"font-size:12px;font-weight:bold;color:#000000;font-family:arial;line-height:140%\">ITEMS</span></td>\n <td valign=\"top\" style=\"width:40px;background-color:#EBEBEB;padding-left:4px\">\n <span style=\"font-size:12px;font-weight:bold;color:#000000;font-family:arial;line-height:140%\">Qty</span></td>\n <td valign=\"top\" style=\"background-color:#EBEBEB;padding-left:4px\">\n <span style=\"font-size:12px;font-weight:bold;color:#000000;font-family:arial;line-height:140%\">Price</span></td>\n {items}\n <tr>\n <td valign=\"top\" style=\"width:110px\">\n <a href=\"{site_url}/product/{url_title}\">\n <img src=\"{media}/{image_thumb}\" style=\"border:1px #CCCCCC solid\" /></a></td>\n <td valign=\"top\">\n <span style=\"font-size:12px;font-weight:bold;color:#000000;font-family:arial;line-height:140%\">\n <a href=\"{site_url}/product/{url_title}\">{title}</a></span><br />\n <span style=\"font-size:12px;font-weight:normal;color:#333333; font-family:arial;line-height:140%\">\n <span style=\"font-size:12px;font-weight:normal;color:#333333; font-family:arial;line-height:140%\">{options}</span>\n </span>\n </td>\n <td valign=\"top\" style=\"width:40px\">\n <span style=\"font-size:12px;font-weight:normal;color:#333333; font-family:arial;line-height:140%\">{quantity}</span></td>\n <td valign=\"top\">\n <span style=\"font-size:12px;font-weight:normal;color:#333333; font-family:arial;line-height:140%\">{currency_marker}{price}</span></td>\n </tr>\n {/items}\n </table>\n <span style=\"font-size:12px;font-weight:normal;color:#000000;font-family:arial;line-height:140%\">-----------</span> <br />\n <span style=\"font-size:12px;font-weight:normal;color:#000000;font-family:arial;line-height:140%\">Subtotal: {currency_marker}{order_subtotal}</span> <br />\n <span style=\"font-size:12px;font-weight:normal;color:#000000;font-family:arial;line-height:140%\">Discount: {currency_marker}{discount_total}</span> <br />\n <span style=\"font-size:12px;font-weight:normal;color:#000000;font-family:arial;line-height:140%\">Tax: {currency_marker}{tax_total}</span> <br />\n <span style=\"font-size:12px;font-weight:normal;color:#000000;font-family:arial;line-height:140%\">Shipping: {currency_marker}{shipping}</span> <br />\n <span style=\"font-size:12px;font-weight:bold;color:#000000;font-family:arial;line-height:140%\">Total: {currency_marker}{order_total}</span> <br /><br />\n <span style=\"font-size:12px;font-weight:normal;color:#333333;font-family:arial;line-height:140%\">Special Instructions:</span><br />\n <br />\n <span style=\"font-size:12px;font-weight:normal;color:#333333; font-family:arial;line-height:100%\">If you have questions about the status of your order please <a href=\"{site_url}/contact/\">contact us</a><a href=\"{site_url}/contact\"></a>.</span><br />\n </p>\n <p>\n <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\"> Thank you,<br />\n <span style=\"font-size:12px;color:#000000;line-height:200%;font-family:verdana;text-decoration:none;\">{site_name}</span></span> \n </p>\n </td>\n </tr>\n <tr>\n <td style=\"background-color:#f2f2f2;border-top:1px solid #FFFFFF;\" valign=\"top\">\n <span style=\"font-size:10px;color:#333333;line-height:100%;font-family:verdana;\">\n If you do not wish to receive these emails simply <a href=\"{site_url}/unsubscribe\">unsubscribe</a>.<br />\n </span></td>\n </tr>\n </table></td>\n </tr>\n</table>',1,'Thank you for your order - Order #{order_id}',NULL,'Adorama PrintShop','contact@adorama'),(4,'customer-order-note',1.00,'<table width=\"100%\" cellpadding=\"10\" cellspacing=\"0\" bgcolor=\"#FFFFFF\" >\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"550\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td style=\"background-color:#FFFFFF;border-top:0px solid #000000;border-bottom:0px solid #FFCC66;text-align:right;\" align=\"center\"><span style=\"font-size:10px;color:#333333;line-height:200%;font-family:verdana;text-decoration:none;\">{site_name}</span></td>\n </tr>\n <tr>\n <td style=\"background-color:#FFFFFF;border-top:0px solid #FFFFFF;border-bottom:0px solid #333333;\"><center><a href=\"\"><IMG id=emailhead1 SRC=\"{media}/images/email-logo.jpg\" BORDER=\"0\" title=\"Your Company\" alt=\"Your Company\" align=\"center\"></a></center></td>\n </tr>\n </table>\n <table width=\"550\" cellpadding=\"20\" cellspacing=\"0\" bgcolor=\"#FFFFFF\">\n <tr>\n <td bgcolor=\"#FFFFFF\" valign=\"top\" style=\"font-size:12px;color:#000000;line-height:150%;font-family:trebuchet ms;\">\n <p>\n <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\">Hi {fname}.</span><br>\n A note has been added to your order.<br>\n </p>\n <p style=\"border:1px solid #f0f0f0; padding:14px 18px; background:#f3f3f3;\">\n <span style=\"font-size:12px;font-weight:bold;color:#333333;font-family:arial;line-height:140%\">Order #: </span>{order_id}<br>\n <span style=\"font-size:12px;font-weight:bold;color:#333333;font-family:arial;line-height:140%\">Note:</span>\n <span style=\"font-size:12px;font-weight:normal;color:#333333; font-family:arial;line-height:140%\"> {order_note} </span><br>\n </p>\n <p>\n <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\"> Thank you,<br>\n <span style=\"font-size:12px;color:#000000;line-height:200%;font-family:verdana;text-decoration:none;\">{site_name}</span></span> <br><br>\n If <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\">you have any questions <a href=\"{site_url}/contact\">contact us </a>. </span>\n </p></td>\n </tr>\n </table>\n </td>\n </tr>\n</table>',1,'Your order has been updated - Order #{order_id}',NULL,'Adorama PrintShop','contact@adorama'),(5,'customer-order-status',1.00,'<table width=\"100%\" cellpadding=\"10\" cellspacing=\"0\" bgcolor=\"#FFFFFF\" >\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"550\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td style=\"background-color:#FFFFFF;border-top:0px solid #000000;border-bottom:0px solid #FFCC66;text-align:right;\" align=\"center\"><span style=\"font-size:10px;color:#333333;line-height:200%;font-family:verdana;text-decoration:none;\">{site_name}</span></td>\n </tr>\n <tr>\n <td style=\"background-color:#FFFFFF;border-top:0px solid #FFFFFF;border-bottom:0px solid #333333;\"><center><a href=\"\"><IMG id=emailhead1 SRC=\"{media}/images/email-logo.jpg\" BORDER=\"0\" title=\"Your Company\" alt=\"Your Company\" align=\"center\"></a></center></td>\n </tr>\n </table>\n <table width=\"550\" cellpadding=\"20\" cellspacing=\"0\" bgcolor=\"#FFFFFF\">\n <tr>\n <td bgcolor=\"#FFFFFF\" valign=\"top\" style=\"font-size:12px;color:#000000;line-height:150%;font-family:trebuchet ms;\">\n <p>\n <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\">Hi {fname}.</span><br>\n Your order status has changed.<br>\n </p>\n <p style=\"border:1px solid #f0f0f0; padding:14px 18px; background:#f3f3f3;\">\n <span style=\"font-size:14px;font-weight:bold;color:#333333; font-family:arial;line-height:140%\">Order Status </span> <br>\n <span style=\"font-size:12px;font-weight:bold;color:#333333;font-family:arial;line-height:140%\">Order #: </span>{order_id}<br>\n <span style=\"font-size:12px;font-weight:bold;color:#333333;font-family:arial;line-height:140%\">Status:</span>\n <span style=\"font-size:12px;font-weight:normal;color:#333333; font-family:arial;line-height:140%\"> {order_status} </span><br>\n </p>\n <p>\n <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\"> Thank you,<br>\n <span style=\"font-size:12px;color:#000000;line-height:200%;font-family:verdana;text-decoration:none;\">{site_name}</span></span> <br><br>\n If <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\">you have any questions <a href=\"{site_url}/contact\">contact us </a>. </span>\n </p></td>\n </tr>\n </table>\n </td>\n </tr>\n</table>',1,'Your order status has changed - Order #{order_id}',NULL,'Adorama PrintShop','contact@adorama'),(6,'customer-password-reset',1.00,'<table width=\"100%\" cellpadding=\"10\" cellspacing=\"0\" bgcolor=\"#FFFFFF\" >\n <tr>\n <td valign=\"top\" align=\"center\">\n <table width=\"550\" cellpadding=\"0\" cellspacing=\"0\">\n <tr>\n <td style=\"background-color:#FFFFFF;border-top:0px solid #000000;border-bottom:0px solid #FFCC66;text-align:right;\" align=\"center\"><span style=\"font-size:10px;color:#333333;line-height:200%;font-family:verdana;text-decoration:none;\">{site_name}</span></td>\n </tr>\n <tr>\n <td style=\"background-color:#FFFFFF;border-top:0px solid #FFFFFF;border-bottom:0px solid #333333;\"><center><a href=\"\"><IMG id=emailhead1 SRC=\"{media}/images/email-logo.jpg\" BORDER=\"0\" title=\"Your Company\" alt=\"Your Company\" align=\"center\"></a></center></td>\n </tr>\n </table>\n <table width=\"550\" cellpadding=\"20\" cellspacing=\"0\" bgcolor=\"#FFFFFF\">\n <tr>\n <td bgcolor=\"#FFFFFF\" valign=\"top\" style=\"font-size:12px;color:#000000;line-height:150%;font-family:trebuchet ms;\">\n <p>\n <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\">Hi {fname}.</span><br>\n A note has been added to your order.<br>\n </p>\n <p style=\"border:1px solid #f0f0f0; padding:14px 18px; background:#f3f3f3;\">\n <span style=\"font-size:12px;font-weight:bold;color:#333333;font-family:arial;line-height:140%\">Password Reset Link: </span>{link}<br>\n </p>\n <p>\n <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\"> Thank you,<br>\n <span style=\"font-size:12px;color:#000000;line-height:200%;font-family:verdana;text-decoration:none;\">{site_name}</span></span> <br><br>\n If <span style=\"font-size:12px;font-weight:regular;color:#000000;font-family:arial;line-height:140%\">you have any questions <a href=\"{site_url}/contact\">contact us </a>. </span>\n </p></td>\n </tr>\n </table>\n </td>\n </tr>\n</table>',1,'{site_name} - Password Reset Link',NULL,'Adorama PrintShop','contact@adorama');
/*!40000 ALTER TABLE `exp_br_email` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_feeds`
--
DROP TABLE IF EXISTS `exp_br_feeds`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_feeds` (
`feed_id` int(11) NOT NULL AUTO_INCREMENT,
`feed_title` varchar(128) NOT NULL DEFAULT '',
`feed_code` varchar(128) NOT NULL DEFAULT '',
PRIMARY KEY (`feed_id`),
UNIQUE KEY `feed_code` (`feed_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_feeds`
--
LOCK TABLES `exp_br_feeds` WRITE;
/*!40000 ALTER TABLE `exp_br_feeds` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_feeds` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_log`
--
DROP TABLE IF EXISTS `exp_br_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_log` (
`log_id` int(11) NOT NULL AUTO_INCREMENT,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`content` text NOT NULL,
`owner` varchar(100) NOT NULL,
`type` varchar(100) NOT NULL,
PRIMARY KEY (`log_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_log`
--
LOCK TABLES `exp_br_log` WRITE;
/*!40000 ALTER TABLE `exp_br_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_order`
--
DROP TABLE IF EXISTS `exp_br_order`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_order` (
`order_id` int(11) NOT NULL AUTO_INCREMENT,
`subscription_id` int(11) NOT NULL DEFAULT '0',
`site_id` int(11) NOT NULL DEFAULT '1',
`member_id` int(11) NOT NULL DEFAULT '0',
`status_id` int(11) NOT NULL DEFAULT '1',
`base` decimal(10,2) NOT NULL,
`tax` decimal(10,2) NOT NULL,
`shipping` decimal(10,2) NOT NULL,
`total` decimal(10,2) NOT NULL,
`discount` decimal(10,2) NOT NULL,
`cart_id` varchar(100) NOT NULL,
`merchant_id` varchar(100) NOT NULL,
`coupon_code` varchar(50) NOT NULL,
`agent_string` varchar(255) DEFAULT 'unknown',
`ip_address` varchar(50) DEFAULT NULL,
`created` int(10) unsigned NOT NULL DEFAULT '0',
`updated` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`order_id`),
KEY `order_member_id` (`member_id`)
) ENGINE=MyISAM AUTO_INCREMENT=10019 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_order`
--
LOCK TABLES `exp_br_order` WRITE;
/*!40000 ALTER TABLE `exp_br_order` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_order` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_order_address`
--
DROP TABLE IF EXISTS `exp_br_order_address`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_order_address` (
`order_address_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`shipping_fname` varchar(50) NOT NULL,
`shipping_lname` varchar(50) NOT NULL,
`shipping_address1` varchar(100) NOT NULL,
`shipping_address2` varchar(100) NOT NULL,
`shipping_state` varchar(50) NOT NULL,
`shipping_zip` varchar(50) NOT NULL,
`shipping_city` varchar(50) NOT NULL,
`billing_fname` varchar(50) NOT NULL,
`billing_lname` varchar(50) NOT NULL,
`billing_address1` varchar(100) NOT NULL,
`billing_address2` varchar(100) NOT NULL,
`billing_city` varchar(50) NOT NULL,
`billing_state` varchar(50) NOT NULL,
`billing_zip` varchar(50) NOT NULL,
`billing_country` varchar(5) NOT NULL,
`shipping_country` varchar(5) NOT NULL,
`billing_company` varchar(100) NOT NULL,
`shipping_company` varchar(100) NOT NULL,
`billing_phone` varchar(100) NOT NULL,
`shipping_phone` varchar(100) NOT NULL,
PRIMARY KEY (`order_address_id`),
KEY `order_address_order_id` (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_order_address`
--
LOCK TABLES `exp_br_order_address` WRITE;
/*!40000 ALTER TABLE `exp_br_order_address` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_order_address` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_order_download`
--
DROP TABLE IF EXISTS `exp_br_order_download`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_order_download` (
`order_download_id` int(11) NOT NULL AUTO_INCREMENT,
`downloadable_id` int(11) NOT NULL,
`member_id` int(11) NOT NULL DEFAULT '0',
`product_id` int(11) NOT NULL,
`order_id` int(11) NOT NULL,
`cnt` int(11) NOT NULL DEFAULT '0',
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`download_source` varchar(100) DEFAULT 'local',
`download_limit` int(11) NOT NULL DEFAULT '0',
`download_length` int(11) NOT NULL,
`download_version` varchar(50) DEFAULT NULL,
`license` varchar(100) NOT NULL,
`note` text,
PRIMARY KEY (`order_download_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_order_download`
--
LOCK TABLES `exp_br_order_download` WRITE;
/*!40000 ALTER TABLE `exp_br_order_download` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_order_download` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_order_item`
--
DROP TABLE IF EXISTS `exp_br_order_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_order_item` (
`order_item_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`base` decimal(10,2) NOT NULL DEFAULT '0.00',
`price` decimal(10,2) NOT NULL DEFAULT '0.00',
`cost` decimal(10,2) NOT NULL DEFAULT '0.00',
`discount` decimal(10,2) NOT NULL DEFAULT '0.00',
`quantity` int(11) NOT NULL DEFAULT '1',
`status` int(11) NOT NULL DEFAULT '0',
`configurable_id` int(11) NOT NULL DEFAULT '0',
`title` varchar(100) NOT NULL,
`taxable` int(11) NOT NULL,
`weight` decimal(10,2) DEFAULT NULL,
`shippable` int(11) NOT NULL,
`url` varchar(100) NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`sku` varchar(100) NOT NULL,
`options` text,
PRIMARY KEY (`order_item_id`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_order_item`
--
LOCK TABLES `exp_br_order_item` WRITE;
/*!40000 ALTER TABLE `exp_br_order_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_order_item` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_order_note`
--
DROP TABLE IF EXISTS `exp_br_order_note`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_order_note` (
`order_note_id` int(11) NOT NULL AUTO_INCREMENT,
`order_note` text NOT NULL,
`filenm` varchar(100) NOT NULL,
`created` int(10) unsigned NOT NULL DEFAULT '0',
`member_id` int(11) NOT NULL,
`order_id` int(11) NOT NULL,
`isprivate` int(11) NOT NULL,
PRIMARY KEY (`order_note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_order_note`
--
LOCK TABLES `exp_br_order_note` WRITE;
/*!40000 ALTER TABLE `exp_br_order_note` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_order_note` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_order_options`
--
DROP TABLE IF EXISTS `exp_br_order_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_order_options` (
`order_item_option_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`order_item_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`options` text NOT NULL,
PRIMARY KEY (`order_item_option_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_order_options`
--
LOCK TABLES `exp_br_order_options` WRITE;
/*!40000 ALTER TABLE `exp_br_order_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_order_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_order_payment`
--
DROP TABLE IF EXISTS `exp_br_order_payment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_order_payment` (
`order_payment_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`transaction_id` varchar(100) NOT NULL,
`payment_type` varchar(50) NOT NULL,
`amount` decimal(10,2) NOT NULL DEFAULT '0.00',
`details` text,
`approval` varchar(100) DEFAULT NULL,
`created` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`order_payment_id`),
KEY `order_payment_order_id` (`order_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_order_payment`
--
LOCK TABLES `exp_br_order_payment` WRITE;
/*!40000 ALTER TABLE `exp_br_order_payment` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_order_payment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_order_ship`
--
DROP TABLE IF EXISTS `exp_br_order_ship`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_order_ship` (
`order_ship_id` int(11) NOT NULL AUTO_INCREMENT,
`order_id` int(11) NOT NULL,
`status` int(11) NOT NULL,
`code` varchar(50) NOT NULL,
`rate` decimal(10,2) NOT NULL,
`cost` decimal(10,2) DEFAULT NULL,
`label` varchar(100) NOT NULL,
`method` varchar(50) NOT NULL,
`tracknum` varchar(255) NOT NULL,
`ship_date` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`order_ship_id`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_order_ship`
--
LOCK TABLES `exp_br_order_ship` WRITE;
/*!40000 ALTER TABLE `exp_br_order_ship` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_order_ship` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_password_reset`
--
DROP TABLE IF EXISTS `exp_br_password_reset`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_password_reset` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`member_id` int(11) NOT NULL,
`token` varchar(255) DEFAULT NULL,
`created` int(11) DEFAULT NULL,
`ip` varchar(255) DEFAULT NULL,
`secure` varchar(255) DEFAULT NULL,
`length` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_password_reset`
--
LOCK TABLES `exp_br_password_reset` WRITE;
/*!40000 ALTER TABLE `exp_br_password_reset` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_password_reset` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_product`
--
DROP TABLE IF EXISTS `exp_br_product`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_product` (
`product_id` int(11) NOT NULL AUTO_INCREMENT,
`site_id` int(11) NOT NULL DEFAULT '1',
`type_id` int(11) NOT NULL,
`title` varchar(100) NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`enabled` int(11) NOT NULL DEFAULT '0',
`taxable` int(11) NOT NULL DEFAULT '0',
`sku` varchar(50) NOT NULL,
`weight` decimal(10,2) DEFAULT NULL,
`shippable` int(11) NOT NULL DEFAULT '0',
`url` varchar(100) DEFAULT NULL,
`manage_inventory` int(11) NOT NULL DEFAULT '1',
`quantity` int(11) NOT NULL DEFAULT '0',
`price` decimal(10,2) NOT NULL,
`sale_price` decimal(10,2) DEFAULT NULL,
`sale_start` datetime DEFAULT NULL,
`sale_end` datetime DEFAULT NULL,
`meta_title` varchar(100) DEFAULT NULL,
`meta_descr` varchar(255) DEFAULT NULL,
`meta_keyword` varchar(100) DEFAULT NULL,
`detail` text,
`attribute_set_id` int(11) DEFAULT NULL,
`cost` decimal(10,2) NOT NULL DEFAULT '0.00',
`featured` int(11) DEFAULT '0',
PRIMARY KEY (`product_id`),
FULLTEXT KEY `fulltext_product` (`title`,`meta_keyword`,`detail`,`sku`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_product`
--
LOCK TABLES `exp_br_product` WRITE;
/*!40000 ALTER TABLE `exp_br_product` DISABLE KEYS */;
INSERT INTO `exp_br_product` VALUES (1,1,3,'Photobook','2015-10-11 17:17:22',1,0,'pbx20',1.00,1,'photobook',1,19997,0.00,NULL,NULL,NULL,'','','','<p>Photobook</p>',1,0.00,1),(2,1,3,'Photoprint','2015-10-11 17:27:38',1,0,'ppxx',0.00,1,'photoprint',1,29990,0.00,NULL,NULL,NULL,'','','','<p></p>',1,0.00,1),(3,1,3,'Canvas','2015-10-11 17:31:23',1,0,'cvxx',1.00,1,'canvas',1,20000,0.00,NULL,NULL,NULL,'','','','<p></p>',1,0.00,1),(4,1,3,'Magnet','2015-10-11 17:35:05',1,0,'mgxx',1.00,1,'ma',1,20000,0.00,NULL,NULL,NULL,'','','','<p>Magnet printing</p>',1,0.00,1);
/*!40000 ALTER TABLE `exp_br_product` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_product_addon`
--
DROP TABLE IF EXISTS `exp_br_product_addon`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_product_addon` (
`related_id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
PRIMARY KEY (`related_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_product_addon`
--
LOCK TABLES `exp_br_product_addon` WRITE;
/*!40000 ALTER TABLE `exp_br_product_addon` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_product_addon` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_product_attributes`
--
DROP TABLE IF EXISTS `exp_br_product_attributes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_product_attributes` (
`pa_id` int(11) NOT NULL AUTO_INCREMENT,
`product_id` int(11) NOT NULL,
`attribute_id` int(11) NOT NULL,
`label` varchar(30) DEFAULT NULL,
`descr` text NOT NULL,
PRIMARY KEY (`pa_id`)
) ENGINE=MyISAM AUTO_INCREMENT=971 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_product_attributes`
--
LOCK TABLES `exp_br_product_attributes` WRITE;
/*!40000 ALTER TABLE `exp_br_product_attributes` DISABLE KEYS */;
INSERT INTO `exp_br_product_attributes` VALUES (967,1,31,NULL,'/photobook/size'),(970,2,31,NULL,'/photoprint/border'),(960,3,31,'next','/canvas/size'),(966,1,28,NULL,'photobook'),(969,2,28,NULL,'photoprint'),(953,3,28,'','canvas'),(963,4,28,NULL,'magnet'),(964,4,31,NULL,'/magnet/quantity');
/*!40000 ALTER TABLE `exp_br_product_attributes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_product_attributes_option`
--
DROP TABLE IF EXISTS `exp_br_product_attributes_option`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_product_attributes_option` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pa_id` int(11) DEFAULT NULL,
`product_id` int(11) DEFAULT NULL,
`attribute_id` int(11) DEFAULT NULL,
`options` text,
`sort` int(11) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `br_product_id` (`product_id`),
KEY `br_attribute_id` (`attribute_id`)
) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_product_attributes_option`
--
LOCK TABLES `exp_br_product_attributes_option` WRITE;
/*!40000 ALTER TABLE `exp_br_product_attributes_option` DISABLE KEYS */;
INSERT INTO `exp_br_product_attributes_option` VALUES (26,964,4,31,'/magnet/quantity',0),(25,963,4,28,'magnet',0),(23,962,4,27,'',0),(24,962,4,27,NULL,1),(13,952,3,27,'',0),(14,952,3,27,NULL,1),(15,953,3,28,'canvas',0),(33,969,2,28,'photoprint',0),(32,968,2,27,NULL,1),(31,968,2,27,'',0),(29,966,1,28,'photobook',0),(28,965,1,27,NULL,1),(27,965,1,27,'',0),(22,960,3,31,'/canvas/size',0),(30,967,1,31,'/photobook/size',0),(34,970,2,31,'/photoprint/border',0);
/*!40000 ALTER TABLE `exp_br_product_attributes_option` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_product_bundle`
--
DROP TABLE IF EXISTS `exp_br_product_bundle`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_product_bundle` (
`bundle_id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
PRIMARY KEY (`bundle_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_product_bundle`
--
LOCK TABLES `exp_br_product_bundle` WRITE;
/*!40000 ALTER TABLE `exp_br_product_bundle` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_br_product_bundle` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_product_category`
--
DROP TABLE IF EXISTS `exp_br_product_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_product_category` (
`pc_id` int(11) NOT NULL AUTO_INCREMENT,
`site_id` int(11) NOT NULL DEFAULT '1',
`category_id` int(11) NOT NULL,
`product_id` int(11) NOT NULL,
`sort_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`pc_id`),
KEY `br_category_id` (`category_id`),
KEY `br_product_id` (`product_id`)
) ENGINE=MyISAM AUTO_INCREMENT=20 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_product_category`
--
LOCK TABLES `exp_br_product_category` WRITE;
/*!40000 ALTER TABLE `exp_br_product_category` DISABLE KEYS */;
INSERT INTO `exp_br_product_category` VALUES (18,1,1,1,0),(19,1,1,2,0),(14,1,1,3,0),(17,1,1,4,0);
/*!40000 ALTER TABLE `exp_br_product_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_product_configurable`
--
DROP TABLE IF EXISTS `exp_br_product_configurable`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_product_configurable` (
`configurable_id` int(11) NOT NULL AUTO_INCREMENT,
`sku` varchar(50) NOT NULL,
`qty` int(10) NOT NULL,
`adjust_type` varchar(50) NOT NULL,
`adjust` decimal(10,2) NOT NULL,
`attributes` text NOT NULL,
`product_id` int(11) NOT NULL,
`created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`configurable_id`)
) ENGINE=MyISAM AUTO_INCREMENT=427 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_product_configurable`
--
LOCK TABLES `exp_br_product_configurable` WRITE;
/*!40000 ALTER TABLE `exp_br_product_configurable` DISABLE KEYS */;
INSERT INTO `exp_br_product_configurable` VALUES (426,'mg1200',1000000,'fixed',100000.00,'a:1:{s:8:\"Quantity\";s:2:\"12\";}',4,'2015-10-19 22:11:03'),(424,'pb2000',1000000,'fixed',100000.00,'a:1:{s:4:\"Size\";s:4:\"20cm\";}',1,'2015-10-19 22:11:03'),(425,'mg0800',1000000,'fixed',50000.00,'a:1:{s:8:\"Quantity\";s:1:\"8\";}\n',4,'2015-10-19 22:11:03'),(423,'pb1500',999997,'fixed',50000.00,'a:1:{s:4:\"Size\";s:4:\"15cm\";}',1,'2015-10-20 15:31:35'),(420,'pp1208',1000000,'fixed',20000.00,'a:2:{s:6:\"Border\";s:4:\"12cm\";s:8:\"Quantity\";s:1:\"8\";}',2,'2015-10-19 04:04:55'),(419,'pp1024',1000000,'fixed',60000.00,'a:2:{s:6:\"Border\";s:4:\"10cm\";s:8:\"Quantity\";s:2:\"24\";}',3,'2015-10-19 04:04:55'),(418,'pp1016',999994,'fixed',50000.00,'a:2:{s:6:\"Border\";s:4:\"10cm\";s:8:\"Quantity\";s:2:\"16\";}',2,'2015-10-20 15:31:35'),(414,'cv3000',1000000,'fixed',100000.00,'a:1:{s:4:\"Size\";s:14:\"L (30 x 30 cm)\";}',3,'2015-10-19 22:11:03'),(413,'cv2000',1000000,'fixed',50000.00,'a:1:{s:4:\"Size\";s:14:\"M (20 x 20 cm)\";}\n',3,'2015-10-19 22:11:03'),(422,'pp1224',999999,'fixed',60000.00,'a:2:{s:6:\"Border\";s:4:\"12cm\";s:8:\"Quantity\";s:2:\"24\";}',2,'2015-10-21 02:53:27'),(421,'pp1216',999997,'fixed',50000.00,'a:2:{s:6:\"Border\";s:4:\"12cm\";s:8:\"Quantity\";s:2:\"16\";}',2,'2015-10-21 01:25:08'),(417,'pp1008',1000000,'fixed',20000.00,' a:2:{s:6:\"Border\";s:4:\"10cm\";s:8:\"Quantity\";s:1:\"8\";}',2,'2015-10-19 04:04:55');
/*!40000 ALTER TABLE `exp_br_product_configurable` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_product_configurable_attribute`
--
DROP TABLE IF EXISTS `exp_br_product_configurable_attribute`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_br_product_configurable_attribute` (
`config_attr_id` int(11) NOT NULL AUTO_INCREMENT,
`configurable_id` int(11) DEFAULT NULL,
`product_id` int(11) DEFAULT NULL,
`attribute_id` int(11) DEFAULT NULL,
`option_id` int(11) DEFAULT NULL,
`sort` int(11) DEFAULT NULL,
PRIMARY KEY (`config_attr_id`),
KEY `br_product_id` (`product_id`),
KEY `br_attribute_id` (`attribute_id`),
KEY `br_option_id` (`option_id`)
) ENGINE=MyISAM AUTO_INCREMENT=87 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_br_product_configurable_attribute`
--
LOCK TABLES `exp_br_product_configurable_attribute` WRITE;
/*!40000 ALTER TABLE `exp_br_product_configurable_attribute` DISABLE KEYS */;
INSERT INTO `exp_br_product_configurable_attribute` VALUES (81,414,3,21,12,0),(80,413,3,21,13,0);
/*!40000 ALTER TABLE `exp_br_product_configurable_attribute` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_br_product_donation`
--
DROP TABLE IF EXISTS `exp_br_product_donation`;
/*!40101 SET @saved_cs_client = @@character_set_client */;