-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.sql
More file actions
970 lines (933 loc) · 27.6 KB
/
Copy pathdatabase.sql
File metadata and controls
970 lines (933 loc) · 27.6 KB
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
-- phpMyAdmin SQL Dump
-- version 3.4.11.1deb2+deb7u1
-- http://www.phpmyadmin.net
--
-- Gostitelj: localhost
-- Čas nastanka: 30. okt 2014 ob 09.37
-- Različica strežnika: 5.5.38
-- Različica PHP: 5.4.4-14+deb7u14
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!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 */;
--
-- Zbirka podatkov: `clothesline`
--
-- --------------------------------------------------------
--
-- Struktura tabele `brands`
--
CREATE TABLE IF NOT EXISTS `brands` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`url` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=755 ;
--
-- Odloži podatke za tabelo `brands`
--
INSERT INTO `brands` (`id`, `name`, `url`) VALUES
(1, '120%', ''),
(2, '1921 Jeans', ''),
(3, '4YOU', ''),
(4, '7Diamonds', ''),
(5, '830 Sign', ''),
(6, 'A Bathing Ape', ''),
(7, 'Abercrombie & Fitch', ''),
(8, 'abercrombie Kids', ''),
(9, 'Able Jeans', ''),
(10, 'Acne Jeans', ''),
(11, 'Adam Kimmel', ''),
(12, 'Adidas', 'http://adidas.com'),
(13, 'Affliction', ''),
(14, 'Afshin Feiz', ''),
(15, 'Agent Provocateur', ''),
(16, 'Agi&Sam', ''),
(17, 'Akademiks', ''),
(18, 'Albano', ''),
(19, 'Alberta Ferretti', ''),
(20, 'Albino', ''),
(21, 'Aldo', ''),
(22, 'Alessandro Dell''Acqua', ''),
(23, 'Alex Perry', ''),
(24, 'Alexander McQueen', ''),
(25, 'Alexander Wang', ''),
(26, 'Alexandre Herchcovitch', ''),
(27, 'Alexis Mabille', ''),
(28, 'Alfred Angelo', ''),
(29, 'Alfred Sung', ''),
(30, 'Alpinestars', ''),
(31, 'American Apparel', ''),
(32, 'American Eagle Outfitters', ''),
(33, 'Aminaka Wilmont', ''),
(34, 'Anand Jon', ''),
(35, 'Andrew Gn', ''),
(36, 'Andrew Majtenyi', ''),
(37, 'Andrew Marc', ''),
(38, 'Andy Thê-Anh', ''),
(39, 'Anglomania', ''),
(40, 'Ania Poniewierska', ''),
(41, 'Anlo', ''),
(42, 'Ann Demeulemeester', ''),
(43, 'Ann-Sofie Back Atelje', ''),
(44, 'Anna Sui', ''),
(45, 'Anne Valérie Hash', ''),
(46, 'Anthony Vaccarello', ''),
(47, 'Antonio Berardi', ''),
(48, 'Antonio Miró', ''),
(49, 'Antony Morato', ''),
(50, 'Anya Hindmarch', ''),
(51, 'April77', ''),
(52, 'Aqua Di Lara', ''),
(53, 'Aquascutum', ''),
(54, 'Arise Apparel', ''),
(55, 'Aritzia', ''),
(56, 'Armand Basi', ''),
(57, 'Armani Casa', ''),
(58, 'Armani Collezioni', ''),
(59, 'Armani Exchange', ''),
(60, 'Armani Jeans', ''),
(61, 'Armani Junior', ''),
(62, 'Armani Privé', ''),
(63, 'Asos', ''),
(64, 'Atsuro Tayama', ''),
(65, 'Avirex', ''),
(66, 'Azadeh', ''),
(67, 'Azzaro', ''),
(68, 'Baby Gap', ''),
(69, 'Baci & Abbracci', ''),
(70, 'Balenciaga', ''),
(71, 'Ballantyne', ''),
(72, 'Bally', ''),
(73, 'Balmain', ''),
(74, 'Banana Republic', ''),
(75, 'Band of Outsiders', ''),
(76, 'Barbara Bui', ''),
(77, 'Barilà', ''),
(78, 'Basso & Brooke', ''),
(79, 'BCBG Max Azria', ''),
(80, 'BCBGirls', ''),
(81, 'Beach Bunny Swimwear', ''),
(82, 'Beautiful Bottoms', ''),
(83, 'Belstaff', ''),
(84, 'Berry Jane', ''),
(85, 'Bershka', ''),
(86, 'Betsey Johnson', ''),
(87, 'Bien Fee pour toi', ''),
(88, 'Bill Blass', ''),
(89, 'Billy Reid', ''),
(90, 'Bishop of Seventh', ''),
(91, 'Bisou Bisou', ''),
(92, 'Bjorkvin', ''),
(93, 'Blackbarrett', ''),
(94, 'Blanco', ''),
(95, 'Blumarine', ''),
(96, 'Blush Lingerie', ''),
(97, 'Bogner', ''),
(98, 'Boomerang', ''),
(99, 'Botchii', ''),
(100, 'Bottega Veneta', ''),
(101, 'Bouchra Jarrar', ''),
(102, 'Boxfresh', ''),
(103, 'Brandon R. Dwyer', ''),
(104, 'Brioni', ''),
(105, 'Brooks Brothers', ''),
(106, 'Bruno Ierullo', ''),
(107, 'Bruuns Bazaar', ''),
(108, 'Buckler', ''),
(109, 'Bulgari', ''),
(110, 'Burberry', ''),
(111, 'Burberry Black Label', ''),
(112, 'Bustle', ''),
(113, 'Byblos', ''),
(114, 'Cacharel', ''),
(115, 'Caeli & Wen', ''),
(116, 'Caeliel', ''),
(117, 'Calibre', ''),
(118, 'Calliope', ''),
(119, 'Calvin Klein', ''),
(120, 'Calvin Klein Collection', ''),
(121, 'Calvin Klein Jeans', ''),
(122, 'Calzedonia', ''),
(123, 'Camilla Norrback', ''),
(124, 'Canada Goose', ''),
(125, 'Canali', ''),
(126, 'Carlie Wong', ''),
(127, 'Carlo Pignatelli', ''),
(128, 'Carlos Miele', ''),
(129, 'Carolina Herrera', ''),
(130, 'Carrera Jeans', ''),
(131, 'Carven', ''),
(132, 'Catherine Malandrino', ''),
(133, 'Catwalk Couture', ''),
(134, 'Céline', ''),
(135, 'Cerruti', ''),
(136, 'Cesare Paciotti', ''),
(137, 'Chanel', ''),
(138, 'Chantal Thomass', ''),
(139, 'Charlotte Ronson', ''),
(140, 'Chauncey', ''),
(141, 'Cheap Monday', ''),
(142, 'Chenson', ''),
(143, 'Chester Jefferies', ''),
(144, 'Chevignon', ''),
(145, 'Chloé', ''),
(146, 'Christian Audigier', ''),
(147, 'Christian Dior', ''),
(148, 'Christian Lacroix', ''),
(149, 'Christian Louboutin', ''),
(150, 'Christian Siriano', ''),
(151, 'Christine Philip', ''),
(152, 'Christophe Lemaire', ''),
(153, 'Christopher Kane', ''),
(154, 'Ciao Pussy', ''),
(155, 'City of Others', ''),
(156, 'cK', ''),
(157, 'Clements Ribeiro', ''),
(158, 'CLOAK Apparel', ''),
(159, 'Closed', ''),
(160, 'Club Monaco', ''),
(161, 'Coach', ''),
(162, 'Colcci', ''),
(163, 'Comme des Garçons', ''),
(164, 'Common Cloth', ''),
(165, 'Conquistador', ''),
(166, 'Corpus', ''),
(167, 'Cosa Nostra', ''),
(168, 'Cosh', ''),
(169, 'Costa Blanca', ''),
(170, 'Costa Blanca X', ''),
(171, 'Costello Tagliapietra', ''),
(172, 'Costume National', ''),
(173, 'Country Road', ''),
(174, 'Crisiswear', ''),
(175, 'Crispin & Basilio', ''),
(176, 'CSF', ''),
(177, 'Cushnie et Ochs', ''),
(178, 'Custo Barcelona', ''),
(179, 'Cy Choi', ''),
(180, 'Cynthia Rybakoff', ''),
(181, 'D&G', ''),
(182, 'D&G Junior', ''),
(183, 'DaftBird', ''),
(184, 'Damir Doma', ''),
(185, 'Danielle Scutt', ''),
(186, 'David Dixon', ''),
(187, 'David Koma', ''),
(188, 'David Yurman', ''),
(189, 'Day Birger et Mikkelsen', ''),
(190, 'De Fursac', ''),
(191, 'Deco', ''),
(192, 'Denis Gagnon', ''),
(193, 'Derek Lam', ''),
(194, 'Derercuny', ''),
(195, 'Despi', ''),
(196, 'Devastee', ''),
(197, 'Diane von Furstenberg', ''),
(198, 'Diesel', ''),
(199, 'Diesel Black Gold', ''),
(200, 'Dimitri Chris', ''),
(201, 'Dinh Bà design', ''),
(202, 'Dior', ''),
(203, 'Dirk Schönberger', ''),
(204, 'Diwon', ''),
(205, 'DKNY', ''),
(206, 'Dolce & Gabbana', ''),
(207, 'Dom Rebel Threads', ''),
(208, 'Donna Karan', ''),
(209, 'Doo.Ri', ''),
(210, 'Dormeuil', ''),
(211, 'Dorothee Wirth', ''),
(212, 'Dries Van Noten', ''),
(213, 'Drykorn', ''),
(214, 'DSquared²', ''),
(215, 'Dunhill', ''),
(216, 'Duvetica', ''),
(217, 'Dylan Ribkoff', ''),
(218, 'Eblin', ''),
(219, 'Eckō Unlimited', ''),
(220, 'Eddie Bauer', ''),
(221, 'Eley Kishimoto', ''),
(222, 'Elie Saab', ''),
(223, 'Elie Tahari', ''),
(224, 'Elisa Atherniense', ''),
(225, 'Ellery', ''),
(226, 'Ellesse', ''),
(227, 'Ellus Jeans Deluxe', ''),
(228, 'Emanuel Ungaro', ''),
(229, 'Emilio de la Morena', ''),
(230, 'Emilio Pucci', ''),
(231, 'Emporio Armani', ''),
(232, 'Emporio Roma', ''),
(233, 'Emporium Viri', ''),
(234, 'Enchanted Enfant', ''),
(235, 'Energie', ''),
(236, 'Enrico Coveri', ''),
(237, 'Erdem', ''),
(238, 'Eres', ''),
(239, 'Erin Fetherston', ''),
(240, 'Ermenegildo Zegna', ''),
(241, 'Escada', ''),
(242, 'Escada Sport', ''),
(243, 'Esprit', ''),
(244, 'Etam', ''),
(245, 'Etienne Aigner', ''),
(246, 'Etro', ''),
(247, 'Evan Biddell', ''),
(248, 'Eve Gravel', ''),
(249, 'Evisu', ''),
(250, 'Ezra Constantine', ''),
(251, 'Fabio di Nicola', ''),
(252, 'Faconnable', ''),
(253, 'Famous Stars and Straps', ''),
(254, 'Feba', ''),
(255, 'Fendi', ''),
(256, 'Filippa K', ''),
(257, 'Fingers Crossed', ''),
(258, 'Fiorucci', ''),
(259, 'Firetrap', ''),
(260, 'Five Locs', ''),
(261, 'Forever 21', ''),
(262, 'Fornarina', ''),
(263, 'Forth & Towne', ''),
(264, 'Forum Jeans', ''),
(265, 'Francesc', ''),
(266, 'Francesco Scognamiglio', ''),
(267, 'Franck Sorbier', ''),
(268, 'Frankie Morello', ''),
(269, 'Freesoul', ''),
(270, 'French Connection (fcuk)', ''),
(271, 'FUBU', ''),
(272, 'G-Star', ''),
(273, 'Gaetano Navarra', ''),
(274, 'Gai Mattiolo', ''),
(275, 'Game Sex Match', ''),
(276, 'Gap', ''),
(277, 'Gap Kids', ''),
(278, 'Gareth Pugh', ''),
(279, 'Gas Jeans', ''),
(280, 'Gattinoni', ''),
(281, 'Georgy Baratashvili', ''),
(282, 'Giambattista Valli', ''),
(283, 'Gianfranco Ferré', ''),
(284, 'Gianni Versace Couture', ''),
(285, 'Giles', ''),
(286, 'Giorgio Armani', ''),
(287, 'Giuliano Fujiwara', ''),
(288, 'Giuseppe Zanotti', ''),
(289, 'Givenchy', ''),
(290, 'God''s Prey', ''),
(291, 'Gregory', ''),
(292, 'Greta Constantine', ''),
(293, 'Grey Ant', ''),
(294, 'Gsus', ''),
(295, 'Gucci', ''),
(296, 'Guess by Marciano', ''),
(297, 'Guess?', ''),
(298, 'Gypsy', ''),
(299, 'H&M', ''),
(300, 'Hakaan', ''),
(301, 'Halston', ''),
(302, 'Hanae Mori', ''),
(303, 'Harry Lunt', ''),
(304, 'Heavy Eco', ''),
(305, 'Heidiwood', ''),
(306, 'Helly Hansen', ''),
(307, 'Helmut Lang', ''),
(308, 'Hennes & Mauritz', ''),
(309, 'Hermès', ''),
(310, 'Hervé Léger', ''),
(311, 'Hien Le', ''),
(312, 'Hilfiger Denim', ''),
(313, 'Hilfiger Sport', ''),
(314, 'Hockley', ''),
(315, 'Hollister', ''),
(316, 'Holly Fulton', ''),
(317, 'Hostility', ''),
(318, 'House of Holland', ''),
(319, 'Hudson Jeans', ''),
(320, 'Hugo', ''),
(321, 'Hugo Boss', ''),
(322, 'Hugo Boss Black', ''),
(323, 'Hugo Boss Green', ''),
(324, 'Hugo Boss Orange', ''),
(325, 'Hugo Boss Selection', ''),
(326, 'Humility Clothing Co.', ''),
(327, 'Humility Couture', ''),
(328, 'Hurley', ''),
(329, 'Hussein Chalayan', ''),
(330, 'Hyden Yoo', ''),
(331, 'iCB', ''),
(332, 'Iceberg', ''),
(333, 'Imitation of Christ', ''),
(334, 'Intimissimi', ''),
(335, 'Iro', ''),
(336, 'Isabel Marant', ''),
(337, 'Issey Miyake', ''),
(338, 'Itnanti', ''),
(339, 'IZOD', ''),
(340, 'Izzy Camilleri', ''),
(341, 'J Brand', ''),
(342, 'J. Lindeberg', ''),
(343, 'Jack & Jones', ''),
(344, 'Janet & Janet', ''),
(345, 'Jasmine Di Milo', ''),
(346, 'Jason Meyers', ''),
(347, 'Jean Muir', ''),
(348, 'Jean Patou', ''),
(349, 'Jean Paul Gaultier', ''),
(350, 'Jean-Charles de Castelbajacs', ''),
(351, 'Jedidiah', ''),
(352, 'Jeffrey Campbell', ''),
(353, 'Jenny Packham', ''),
(354, 'Jeroen van Tuyl', ''),
(355, 'Jessica Biffi', ''),
(356, 'Jessie Hill', ''),
(357, 'Jil Sander', ''),
(358, 'Jill Stuart', ''),
(359, 'Joe Fresh', ''),
(360, 'Joeffer Caoc', ''),
(361, 'Johannes Faktotum', ''),
(362, 'John Galliano', ''),
(363, 'John Richmond', ''),
(364, 'John Rocha', ''),
(365, 'John Varvatos', ''),
(366, 'Joker Brand', ''),
(367, 'Jonathan Saunders', ''),
(368, 'Joop!', ''),
(369, 'Juicy Couture', ''),
(370, 'Julien David', ''),
(371, 'Julien Macdonald', ''),
(372, 'Julius & Friends', ''),
(373, 'Junk de Luxe', ''),
(374, 'Junya Watanabe', ''),
(375, 'Just Cavalli', ''),
(376, 'Juzd', ''),
(377, 'Kanye West', ''),
(378, 'Karen Millen', ''),
(379, 'Karl Kani', ''),
(380, 'Karl Lagerfeld', ''),
(381, 'KÄRV', ''),
(382, 'Kavi Kavi', ''),
(383, 'Kenneth Cole', ''),
(384, 'Kenneth Cole Reaction', ''),
(385, 'Kenzo', ''),
(386, 'Kevork Kiledjian', ''),
(387, 'Kilgour', ''),
(388, 'Killah', ''),
(389, 'Killer Loop', ''),
(390, 'Kiminori Morishita', ''),
(391, 'Kinetix', ''),
(392, 'Kiton', ''),
(393, 'Kitsuné', ''),
(394, 'Kling', ''),
(395, 'Kora', ''),
(396, 'Kris Van Assche', ''),
(397, 'Ksubi', ''),
(398, 'La Perla', ''),
(399, 'La Senza', ''),
(400, 'Lacoste', ''),
(401, 'Lady Dutch', ''),
(402, 'Lanvin', ''),
(403, 'Lara Bohinc', ''),
(404, 'Lauren Conrad', ''),
(405, 'Le Coq Sportif', ''),
(406, 'Lela Rose', ''),
(407, 'Leona', ''),
(408, 'Les Petites', ''),
(409, 'Levi Okunov', ''),
(410, 'Liber', ''),
(411, 'Lick My Legs', ''),
(412, 'Lida Baday', ''),
(413, 'Limi Feu', ''),
(414, 'Limité', ''),
(415, 'Lisa Ho', ''),
(416, 'Ljung', ''),
(417, 'Loewe', ''),
(418, 'Lolita Girl Clothing', ''),
(419, 'Lolita Lempicka', ''),
(420, 'Longchamp', ''),
(421, 'Loomstate', ''),
(422, 'Louis Vuitton', ''),
(423, 'Love Sex Money', ''),
(424, 'Luca Luca', ''),
(425, 'Lucian Matis', ''),
(426, 'Luciano Carvari', ''),
(427, 'Luella', ''),
(428, 'Lundstrom', ''),
(429, 'Lust', ''),
(430, 'Mackage', ''),
(431, 'Madeleine Press', ''),
(432, 'Maison Martin Margiela', ''),
(433, 'Malandrino', ''),
(434, 'Mangano', ''),
(435, 'Mango', ''),
(436, 'ManiaMania', ''),
(437, 'Manolo Blahnik', ''),
(438, 'Marc by Marc Jacobs', ''),
(439, 'Marc Jacobs', ''),
(440, 'Marchesa', ''),
(441, 'Marco Bicego', ''),
(442, 'Margaret Howell', ''),
(443, 'Marie Jo Haute Lingerie', ''),
(444, 'Marie Jo Intense', ''),
(445, 'Marie Jo L''Aventure', ''),
(446, 'Marios Schwab', ''),
(447, 'Mark Fast', ''),
(448, 'Marni', ''),
(449, 'Massimo Dutti', ''),
(450, 'Mat Fashion', ''),
(451, 'Matinique', ''),
(452, 'Matthew Williamson', ''),
(453, 'Maurizio Pecoraro', ''),
(454, 'Mauro Grifoni', ''),
(455, 'Max Azria', ''),
(456, 'Max Mara', ''),
(457, 'Maxime Simoens', ''),
(458, 'Me & City', ''),
(459, 'Meltin''Pot', ''),
(460, 'Mer du Nord', ''),
(461, 'Merc', ''),
(462, 'Michaa', ''),
(463, 'Michael Bastian', ''),
(464, 'Michael Kors', ''),
(465, 'Michael van der Ham', ''),
(466, 'Miharayasuhiro', ''),
(467, 'Mikael Aghal', ''),
(468, 'Miss Sixty', ''),
(469, 'Missoni', ''),
(470, 'Miu Miu', ''),
(471, 'Mizra Jeans', ''),
(472, 'MJeans', ''),
(473, 'MNG', ''),
(474, 'Mockingbird Brand Jeans', ''),
(475, 'Moncler', ''),
(476, 'Moncler Gamme Bleu', ''),
(477, 'Moncler Gamme Rouge', ''),
(478, 'Monique Lhuillier', ''),
(479, 'Moose Knuckles', ''),
(480, 'Morena Rosa', ''),
(481, 'Moschino', ''),
(482, 'Moussy', ''),
(483, 'Mulberry', ''),
(484, 'Muse Cristian Chenail', ''),
(485, 'Myco Anna', ''),
(486, 'Myla', ''),
(487, 'Nadya Toto', ''),
(488, 'Naeem Khan', ''),
(489, 'Naked & Famous Denim', ''),
(490, 'Nanette Lepore', ''),
(491, 'Naoki Takizawa', ''),
(492, 'Nautica', ''),
(493, 'Neil Barrett', ''),
(494, 'New York Laundry', ''),
(495, 'Nicolas Andreas Taralis', ''),
(496, 'Nicole Farhi', ''),
(497, 'Nicole Miller', ''),
(498, 'Nike', ''),
(499, 'Nina Ricci', ''),
(500, 'No. 21', ''),
(501, 'Nom de Guerre', ''),
(502, 'Nudie Jeans', ''),
(503, 'Nümph', ''),
(504, 'NYL Sport', ''),
(505, 'Obscur', ''),
(506, 'Ocean Pacific', ''),
(507, 'Old Navy', ''),
(508, 'Olga Berg', ''),
(509, 'Optionelle', ''),
(510, 'Orri Henrisson', ''),
(511, 'Oscar de la Renta', ''),
(512, 'Oysho', ''),
(513, 'Ozwald Boateng', ''),
(514, 'Paco Rabanne', ''),
(515, 'Paige Premium Denim', ''),
(516, 'Pamella Roland', ''),
(517, 'Paper Denim & Cloth', ''),
(518, 'Passion Fruit Designs', ''),
(519, 'Passionata', ''),
(520, 'Pat McDonagh Couture', ''),
(521, 'Patrizia Pepe', ''),
(522, 'Paul & Joe', ''),
(523, 'Paul Frank', ''),
(524, 'Paul Hardy', ''),
(525, 'Paul Smith', ''),
(526, 'Paul Smith Black', ''),
(527, 'Paul Smith Blue', ''),
(528, 'Paul Smith Jeans', ''),
(529, 'Paul Smith London', ''),
(530, 'Paul Smith Parfums', ''),
(531, 'Paul Smith Pink', ''),
(532, 'Paule Ka', ''),
(533, 'Peggy Noland', ''),
(534, 'Pepe Jeans', ''),
(535, 'Perry Ellis', ''),
(536, 'Peter Jensen', ''),
(537, 'Peter Kent Handbags', ''),
(538, 'Peter Pilotto', ''),
(539, 'Peter Som', ''),
(540, 'PetrouMan', ''),
(541, 'Peuterey', ''),
(542, 'Peuterey Aigulle Noire', ''),
(543, 'Phi', ''),
(544, 'Philip Sparks', ''),
(545, 'Philip Treacy', ''),
(546, 'Philipp Plein', ''),
(547, 'Pierre Cardin', ''),
(548, 'Pink Tartan', ''),
(549, 'Piombo', ''),
(550, 'Piperlime', ''),
(551, 'Placed by Gideon', ''),
(552, 'Playlife', ''),
(553, 'Plié', ''),
(554, 'Pollini', ''),
(555, 'Ports 1961', ''),
(556, 'PPQ', ''),
(557, 'Prabal Gurung', ''),
(558, 'Prada', ''),
(559, 'Preen', ''),
(560, 'Pringle of Scotland', ''),
(561, 'Proenza Schouler', ''),
(562, 'Prospect Denim', ''),
(563, 'PRPS', ''),
(564, 'Pull & Bear', ''),
(565, 'Puma', ''),
(566, 'Pure by Alfred Sung', ''),
(567, 'Pussy Glamore', ''),
(568, 'Pyrenex', ''),
(569, 'Quazi', ''),
(570, 'Ra-Re', ''),
(571, 'Raf Simons', ''),
(572, 'rag & bone', ''),
(573, 'Ralph Lauren Polo', ''),
(574, 'Rampage', ''),
(575, 'Ramsey', ''),
(576, 'Raoul', ''),
(577, 'Rebecca Minkoff', ''),
(578, 'Recession Denim', ''),
(579, 'Reebok', ''),
(580, 'Reem Acra', ''),
(581, 'Regal Clothing Co.', ''),
(582, 'René Lezard', ''),
(583, 'Renée DuMarr', ''),
(584, 'Reserved', ''),
(585, 'Resin', ''),
(586, 'Resurrection by Juyoung', ''),
(587, 'Richard James', ''),
(588, 'River Island', ''),
(589, 'rk', ''),
(590, 'Robert Graham', ''),
(591, 'Roberto Cavalli', ''),
(592, 'Roberto Coin', ''),
(593, 'Roberto Collina', ''),
(594, 'Rocawear', ''),
(595, 'Rocco Barocco', ''),
(596, 'Rochas', ''),
(597, 'Rochelier', ''),
(598, 'Rock and Republic', ''),
(599, 'Rodarte', ''),
(600, 'Roland Mouret', ''),
(601, 'Romana Correale', ''),
(602, 'Romona Keveza', ''),
(603, 'Rosa Cha', ''),
(604, 'Rosa Clara', ''),
(605, 'Rudsak', ''),
(606, 'RUEHL 925', ''),
(607, 'Ruffian', ''),
(608, 'Saha Swimwear', ''),
(609, 'Salvatore Ferragamo', ''),
(610, 'Samsøe & Samsøe', ''),
(611, 'Samuel Vartan', ''),
(612, 'Samuji', ''),
(613, 'Samurai Jeans', ''),
(614, 'Sandinista', ''),
(615, 'Sandro', ''),
(616, 'Sara Claire & Esther', ''),
(617, 'Sarar', ''),
(618, 'Sass & Bide', ''),
(619, 'Saurette', ''),
(620, 'Schiaparelli', ''),
(621, 'Scotch and Soda', ''),
(622, 'Sean Jean', ''),
(623, 'Selected', ''),
(624, 'Serfontaine', ''),
(625, 'Sergio Rossi', ''),
(626, 'Setara', ''),
(627, 'Shan', ''),
(628, 'Shipley & Halmos', ''),
(629, 'SHNELA Chic Wear', ''),
(630, 'Shoshanna', ''),
(631, 'SickthSense', ''),
(632, 'Sideways', ''),
(633, 'Silver Jeans', ''),
(634, 'Sinéquanone', ''),
(635, 'Sisley', ''),
(636, 'Sita Murt', ''),
(637, 'Siviglia', ''),
(638, 'Sixteen Seventy Clothing Co', ''),
(639, 'Sixty', ''),
(640, 'Skingraft', ''),
(641, 'Slavka Plavsic', ''),
(642, 'small paul', ''),
(643, 'Smalto', ''),
(644, 'Soia & Kyo', ''),
(645, 'Song for the Mute', ''),
(646, 'Sonia Rykiel', ''),
(647, 'Sportmax', ''),
(648, 'Standard Issue', ''),
(649, 'Stefanel', ''),
(650, 'Stefanel', ''),
(651, 'Stella & Dot Jewelry', ''),
(652, 'Stella McCartney', ''),
(653, 'Stradivarius', ''),
(654, 'Stüssy', ''),
(655, 'Suh-Tahn', ''),
(656, 'sully wong', ''),
(657, 'Superated', ''),
(658, 'Sweetface', ''),
(659, 'Sylvia Heisel', ''),
(660, 'Talbots', ''),
(661, 'Talienk', ''),
(662, 'Tapout', ''),
(663, 'Taverniti', ''),
(664, 'Ter et Bantine', ''),
(665, 'Tess Giberson', ''),
(666, 'Thakoon', ''),
(667, 'The D. Buchanan Collection', ''),
(668, 'The Twelfth Letter', ''),
(669, 'Thierry Mugler', ''),
(670, 'Thomas Burberry', ''),
(671, 'Threeasfour', ''),
(672, 'Thrive', ''),
(673, 'Tiger of Sweden', ''),
(674, 'Time', ''),
(675, 'Timo Weiland', ''),
(676, 'TNA', ''),
(677, 'TO THE MAX', ''),
(678, 'Todd Lynn', ''),
(679, 'Tom Ford', ''),
(680, 'Tommy Hilfiger', ''),
(681, 'Tommy Hilfiger Childrenswear', ''),
(682, 'Tommy Jeans', ''),
(683, 'Tory Burch', ''),
(684, 'Tracy Reese', ''),
(685, 'Travis Taddeo', ''),
(686, 'Tribeca', ''),
(687, 'Trimäpee', ''),
(688, 'Trina Turk', ''),
(689, 'Triple Five Soul', ''),
(690, 'Triton', ''),
(691, 'True Religion', ''),
(692, 'Trussardi', ''),
(693, 'Twenty8Twelve', ''),
(694, 'UGG', ''),
(695, 'Uknighted Clothing', ''),
(696, 'Ula Zukowska', ''),
(697, 'Ultimo', ''),
(698, 'Ulyana & Tetiana', ''),
(699, 'Umit Benan', ''),
(700, 'Uniqlo', ''),
(701, 'United Colors of Benetton', ''),
(702, 'Unlisted', ''),
(703, 'Urban Behavior', ''),
(704, 'Ute Ploier', ''),
(705, 'Uterqüe', ''),
(706, 'Valentino', ''),
(707, 'Valerie', ''),
(708, 'Valisere', ''),
(709, 'Vanessa Bruno', ''),
(710, 'Varela LaMar', ''),
(711, 'Vawk', ''),
(712, 'Vera Bradley', ''),
(713, 'Vera Wang', ''),
(714, 'Verrier', ''),
(715, 'Versace', ''),
(716, 'Versace Jeans Couture', ''),
(717, 'Versace Sport', ''),
(718, 'Versus', ''),
(719, 'Victoria Beckham', ''),
(720, 'Victoria''s Secret', ''),
(721, 'Viktor & Rolf', ''),
(722, 'Vince Camuto', ''),
(723, 'Vionnet', ''),
(724, 'Vivienne Tam', ''),
(725, 'Vivienne Westwood', ''),
(726, 'Vivienne Westwood Gold Label', ''),
(727, 'Vivienne Westwood Man', ''),
(728, 'Vivienne Westwood Red Label', ''),
(729, 'VMarie Fashion', ''),
(730, 'Volcom', ''),
(731, 'Von Dutch', ''),
(732, 'Von Zipper', ''),
(733, 'Whitley Kros', ''),
(734, 'Windsor', ''),
(735, 'Wish', ''),
(736, 'Woolrich Woolen Mills', ''),
(737, 'Wooyoungmi', ''),
(738, 'Wormland', ''),
(739, 'Worth', ''),
(740, 'Wunderkind', ''),
(741, 'Xtreme Couture', ''),
(742, 'ackfou', ''),
(743, 'Yigal Azrouël', ''),
(744, 'Yohji Yamamoto', ''),
(745, 'Yves Saint Laurent', ''),
(746, 'Z Spoke', ''),
(747, 'Z Zegna', ''),
(748, 'Z-Brand', ''),
(749, 'Zac Posen', ''),
(750, 'Zara', ''),
(751, 'Zoo York', ''),
(752, 'Zoran Dobrić', ''),
(753, 'ZSEGA', ''),
(754, 'Topshop', '');
-- --------------------------------------------------------
--
-- Struktura tabele `favs`
--
CREATE TABLE IF NOT EXISTS `favs` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`brand_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=51 ;
-- --------------------------------------------------------
--
-- Struktura tabele `likes`
--
CREATE TABLE IF NOT EXISTS `likes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=7 ;
--
-- Odloži podatke za tabelo `likes`
--
INSERT INTO `likes` (`id`, `name`) VALUES
(1, 'adventure'),
(2, 'autumn'),
(3, 'calm'),
(4, 'cheap'),
(5, 'expensive'),
(6, 'luxury');
-- --------------------------------------------------------
--
-- Struktura tabele `picks`
--
CREATE TABLE IF NOT EXISTS `picks` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`brand_id` int(11) NOT NULL,
`created_at` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4 ;
-- --------------------------------------------------------
--
-- Struktura tabele `tags`
--
CREATE TABLE IF NOT EXISTS `tags` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`brand_id` int(11) NOT NULL,
`tag` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=47 ;
--
-- Odloži podatke za tabelo `tags`
--
INSERT INTO `tags` (`id`, `brand_id`, `tag`) VALUES
(1, 1, 'luxury'),
(2, 1, 'posh'),
(3, 1, 'mainstream'),
(4, 1, 'spanish'),
(5, 1, 'jacket'),
(6, 1, 'trouser'),
(7, 1, 'bowtie'),
(8, 1, 'shirt'),
(9, 3, 'sports'),
(10, 3, 'trainers '),
(11, 5, 'sports'),
(12, 5, 'trainers '),
(13, 2, 'perfumes'),
(14, 2, 'expensive'),
(15, 2, 'cosmetics'),
(16, 2, 'belts'),
(17, 2, 'exclusive'),
(18, 2, 'shirt'),
(19, 2, 'trousers'),
(20, 2, 'jacket'),
(21, 20, 'practical'),
(22, 20, 'cheap '),
(23, 20, 'indie'),
(24, 20, 'men'),
(25, 20, 'accessories'),
(26, 20, 'variety'),
(27, 20, 'jeans'),
(42, 25, 'grunge'),
(43, 25, 'military'),
(44, 25, 'camouflage'),
(45, 25, 'jeans'),
(46, 25, 'rugged');
-- --------------------------------------------------------
--
-- Struktura tabele `topbrands`
--
CREATE TABLE IF NOT EXISTS `topbrands` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` varchar(500) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=26 ;
--
-- Odloži podatke za tabelo `topbrands`
--
INSERT INTO `topbrands` (`id`, `name`, `url`, `description`) VALUES
(1, 'Zara', 'http://www.zara.com', 'Latest trends in clothing for women, men and kids at ZARA online. New arrivals, fashion catalog, collections and lookbooks every week.'),
(2, 'Chanel', 'http://chanel.com', 'Chanel S.A. is a French, privately held company owned by Alain and Gerard Wertheimer, grandsons of Pierre Wertheimer.'),
(3, 'Adidas', 'http://www.adidas.com', 'Adidas AG is a German multinational corporation that designs and manufactures sports shoes, clothing and accessories.'),
(4, 'Reebok', 'http://reebok.com', 'Reebok International Limited was founded in 1895 in Bolton, Lancashire, England. Subsidiary of Adidas since 2005.'),
(5, 'Nike', 'http://nike.com', 'Nike, Inc is an American multinational corporation that is engaged in the design, development, and manufacturing.'),
(6, 'Louis Vuitton', 'http://www.louisvuitton.com', 'Louis Vuitton was a french designer who founded his namesake label in 1854. Louis Vuitton specialized in making trunks.'),
(7, 'Brooks Brothers', 'http://brooksbrothers.com', 'Brooks Brothers is the oldest men''s clothier chain in the United States and is headquartered on Madison Avenue in Manhattan, NYC.'),
(8, 'Esprit', 'http://www.esprit.com', 'Esprit is an international fashion brand that has been bringing style and quality to life since 1968. Authentic and easygoing style.'),
(9, 'FUBU', 'http://fubu.com', 'FUBU is an American-owned clothing company. It includes casual wear, sports wear, a suit collection, eyewear, and shoes.'),
(10, 'GAP', 'http://gap.com', 'The Gap, Inc., commonly known as Gap Inc. or Gap, is an American multinational clothing and accessories retailer. '),
(11, 'H&M', 'http://hm.com', 'Hennes & Mauritz AB is a Swedish multinational retail-clothing company, known for its fast-fashion clothing for men, women & teens.'),
(12, 'Intimissimi', 'http://www.intimissimi.com', 'Intimissimi is an Italian clothing label started in 1996 that specializes in bras, briefs, lingerie, vests, and pyjamas for women and men.'),
(13, 'Jack & Jones', 'http://jackjones.com', 'The story of JACK & JONES begins in 1990 when BESTSELLER sends a young, fiery soul to the Oslo fashion fair with carefully chosen collection.'),
(14, 'Killer Loop', 'http://killerloop.com', 'The brand takes its name from the famous move by windsurfing champion Cesare Cantagalli.'),
(15, 'Max Mara', 'http://maxmara.com', 'Max Mara is a luxury Italian fashion house belonging to the group of companies under the Max Mara Fashion Group holding.'),
(17, 'Prada', 'http://prada.com', 'Prada is an Italian luxury fashion house, specializing in ready-to-wear leather and fashion accessories, shoes, perfumes, watches...'),
(19, 'Stradivarius', 'http://stradivarius.com', 'Stradivarius is an international women clothing fashion brand from Spain, the Inditex group.'),
(20, 'Topshop', 'http://topshop.com', 'Topshop was founded in 1964 as Peter Robinson''s Top Shop, a youth fashion brand within the Sheffield branch of Peter Robinson.'),
(21, 'Tommy Hillfiger', 'http://tommyhilfiger.com', 'Tommy Hilfiger is an American fashion, apparel, design, fragrance retail, etc. '),
(23, 'Volcom', 'http://volcom.com', 'Volcom is a designer, marketer, and distributor of youth-oriented products. It primarily produces young men''s and women''s clothing.'),
(24, 'Versace', 'http://www.versace.com', 'Versace is an Italian fashion company and trade name founded by Gianni Versace in 1978.'),
(25, 'Diesel', 'http://www.diesel.com', 'Diesel is an Italian clothing company. It sells high-priced denim jeans and other clothing and accessories aimed at young adults. ');
-- --------------------------------------------------------
--
-- Struktura tabele `users`
--
CREATE TABLE IF NOT EXISTS `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`username` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`created_at` datetime NOT NULL,
`updated_at` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=16 ;
-- --------------------------------------------------------
--
-- Struktura tabele `user_likes`
--
CREATE TABLE IF NOT EXISTS `user_likes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`like_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=21 ;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;