-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdatabase.sql
1811 lines (1590 loc) · 52.5 KB
/
database.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
-- phpMyAdmin SQL Dump
-- version 4.4.15.8
-- https://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Mar 28, 2017 at 10:12 AM
-- Server version: 5.6.31
-- PHP Version: 5.3.29
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 utf8mb4 */;
--
-- Database: `clopotel_md`
--
-- --------------------------------------------------------
--
-- Table structure for table `Cart`
--
CREATE TABLE IF NOT EXISTS `Cart` (
`ID` int(11) NOT NULL,
`members` int(11) NOT NULL,
`category` int(11) NOT NULL,
`item` int(11) NOT NULL,
`Count` int(11) NOT NULL DEFAULT '1',
`Date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Cart`
--
INSERT INTO `Cart` (`ID`, `members`, `category`, `item`, `Count`, `Date`) VALUES
(9, 2, 2, 2, 4, '2017-03-27 14:01:51'),
(10, 2, 2, 3, 6, '2017-03-27 14:02:10'),
(11, 2, 1, 1, 1, '2017-03-28 05:00:31'),
(13, 3, 2, 2, 2, '2017-03-28 05:22:13'),
(14, 3, 2, 3, 1, '2017-03-28 05:22:15'),
(18, 3, 1, 1, 2, '2017-03-28 05:25:58'),
(19, 3, 1, 2, 6, '2017-03-28 05:25:59'),
(20, 3, 1, 3, 4, '2017-03-28 05:26:00');
-- --------------------------------------------------------
--
-- Table structure for table `Categorie`
--
CREATE TABLE IF NOT EXISTS `Categorie` (
`ID` int(11) NOT NULL,
`Nume` varchar(255) DEFAULT NULL,
`Database` varchar(255) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Categorie`
--
INSERT INTO `Categorie` (`ID`, `Nume`, `Database`) VALUES
(1, 'Laptopuri', 'notebook'),
(2, 'Telefoane', 'phone');
-- --------------------------------------------------------
--
-- Table structure for table `Subcategorie`
--
CREATE TABLE IF NOT EXISTS `Subcategorie` (
`ID` int(11) NOT NULL,
`Nume` varchar(255) DEFAULT NULL,
`ID_Categorie` int(11) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Subcategorie`
--
INSERT INTO `Subcategorie` (`ID`, `Nume`, `ID_Categorie`) VALUES
(1, 'Laptopuri si accesorii', 1),
(2, 'Telefoane mobile & accesorii', 1),
(3, 'Tablete & accesorii', 1),
(4, 'Wearables & Gadgeturi', 1),
(5, 'Desktop PC & Monitoare', 2),
(6, 'Componente PC', 2),
(7, 'Software', 2),
(8, 'Periferice PC', 2);
-- --------------------------------------------------------
--
-- Table structure for table `Tip`
--
CREATE TABLE IF NOT EXISTS `Tip` (
`ID` int(11) NOT NULL,
`Nume` varchar(255) DEFAULT NULL,
`ID_Subcategorie` int(11) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=78 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Tip`
--
INSERT INTO `Tip` (`ID`, `Nume`, `ID_Subcategorie`) VALUES
(1, 'Laptopuri', 1),
(2, 'Genti laptop', 1),
(3, 'Standuri/Coolere notebook', 1),
(4, 'Hard disk-uri notebook', 1),
(5, 'Memorii Notebook', 1),
(6, 'Incarcatoare laptop', 1),
(7, 'Baterii laptop', 1),
(8, 'Alte accesorii', 1),
(9, 'Telefoane Mobile', 2),
(10, 'Huse telefoane', 2),
(11, 'Folii protectie telefoane', 2),
(12, 'Incarcatoare telefoane', 2),
(13, 'Acumulatori', 2),
(14, 'Casti audio si Bluetooth', 2),
(15, 'Cabluri si Adaptoare telefoane', 2),
(16, 'Suport si Docking', 2),
(17, 'Seturi accesorii', 2),
(18, 'Alte accesorii telefoane', 2),
(19, 'Carduri memorie', 2),
(20, 'Telefoane cu fir', 2),
(21, 'Telefoane fara fir', 2),
(22, 'Sisteme de teleconferinta', 2),
(23, 'Centrale Telefonice', 2),
(24, 'Tablete', 3),
(25, 'Huse tablete', 3),
(26, 'Folii protectie tablete', 3),
(27, 'Incarcatoare tablete', 3),
(28, 'Suport auto si Docking', 3),
(29, 'Tastaturi tablete', 3),
(30, 'Cabluri si adaptoare tablete', 3),
(31, 'Alte accesorii tablete', 3),
(32, 'Smartwatch-uri si bratari fitness', 4),
(33, 'Drone', 4),
(34, 'Boxe portabile fara fir', 4),
(35, 'Alte gadgeturi', 4),
(36, 'Accesorii drone', 4),
(37, 'Alarme & accesorii', 4),
(38, 'Control acces & accesorii', 4),
(39, 'Centrale si module smart home', 4),
(40, 'Desktop PC', 5),
(41, 'Monitoare LED', 5),
(42, 'Placi video', 6),
(43, 'Placi video', 6),
(44, 'Placi de baza', 6),
(45, 'Placi de sunet', 6),
(46, 'Memorii', 6),
(47, 'Procesoare', 6),
(48, 'Solid-State Drive (SSD)', 6),
(49, 'Hard Disk-uri', 6),
(50, 'Carcase', 6),
(51, 'Surse PC', 6),
(52, 'Accesorii IT', 6),
(53, 'DVD Writer', 6),
(54, 'Blu Ray', 6),
(55, 'Coolere Hard disk', 6),
(56, 'Coolere Memorii', 6),
(57, 'Ventilatoare PC', 6),
(58, 'Coolere Procesor', 6),
(59, 'Paste Termice', 6),
(60, 'Fan Controllere', 6),
(61, 'Rack Hard-disk', 6),
(62, 'Sisteme de operare', 7),
(63, 'Office & Aplicatii Desktop', 7),
(64, 'Antivirus', 7),
(65, 'Mouse', 8),
(66, 'Tastaturi', 8),
(67, 'Hard Disk-uri externe', 8),
(68, 'SSD-uri externe', 8),
(69, 'Memorii USB', 8),
(70, 'Boxe PC', 8),
(71, 'Casti PC', 8),
(72, 'Mousepad', 8),
(73, 'Camere Web', 8),
(74, 'Tablete grafice', 8),
(75, 'Accesorii hard disk-uri externe', 8),
(76, 'Unitati optice externe', 8),
(77, 'Periferice Diverse', 8);
-- --------------------------------------------------------
--
-- Table structure for table `Translate`
--
CREATE TABLE IF NOT EXISTS `Translate` (
`ID` int(11) NOT NULL,
`Language` enum('EN','RO','RU') DEFAULT NULL,
`KeyWord` varchar(255) DEFAULT NULL,
`Translate` varchar(255) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=360 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Translate`
--
INSERT INTO `Translate` (`ID`, `Language`, `KeyWord`, `Translate`) VALUES
(1, 'EN', 'myaccount', 'My Account'),
(2, 'EN', 'search', 'Search'),
(3, 'EN', 'register', 'Register'),
(4, 'EN', 'login', 'Login'),
(5, 'EN', 'currently_logged', 'Currently logged in as'),
(6, 'EN', 'mycart', 'My Cart'),
(7, 'EN', 'logout', 'Logout'),
(8, 'EN', 'admin_panel', 'Admin Panel'),
(9, 'EN', 'rights', 'Rights'),
(10, 'EN', 'database_manage', 'Database Manage'),
(11, 'EN', 'top_sell', 'Top Selling'),
(12, 'EN', 'phones', 'Phones'),
(13, 'EN', 'phone', 'Phone'),
(14, 'EN', 'sale', 'Sale'),
(15, 'EN', 'categories', 'Categories'),
(16, 'EN', 'info', 'Info'),
(17, 'EN', 'others', 'Others'),
(18, 'EN', 'news_subs', 'Newsletter Subscribe'),
(19, 'EN', 'email_subs', 'Email Subscribe'),
(20, 'EN', 'subscribe', 'Subscribe'),
(21, 'EN', 'about', 'About Us'),
(22, 'EN', 'team', 'Team'),
(23, 'EN', 'shops', 'Shops'),
(24, 'EN', 'refunds', 'Refunds'),
(25, 'EN', 'refund', 'Refund'),
(26, 'EN', 'delivery', 'Delivery'),
(27, 'EN', 'garanty', 'Garanty'),
(28, 'EN', 'copyright', 'Copyright Clopotel.md © online store 2016.'),
(29, 'EN', 'personal_info', 'Personal Information'),
(30, 'EN', 'username', 'Username'),
(31, 'EN', 'role', 'Role'),
(32, 'EN', 'first_name', 'First Name'),
(33, 'EN', 'last_name', 'Last Name'),
(34, 'EN', 'date_entered', 'Date Entered'),
(35, 'EN', 'adress', 'Adress'),
(36, 'EN', 'adresses', 'Adresses'),
(37, 'EN', 'billing_adress', 'Billing Adress'),
(38, 'EN', 'billing_adresses', 'Billing Adresses'),
(39, 'EN', 'change', 'Change'),
(40, 'EN', 'region', 'District'),
(41, 'EN', 'city', 'City'),
(42, 'EN', 'postal_code', 'Postal Code'),
(43, 'EN', 'street', 'Street'),
(44, 'EN', 'build', 'Build'),
(45, 'EN', 'door', 'Door'),
(46, 'EN', 'change_adress', 'Change Adress'),
(47, 'EN', 'back_to_acc', 'Back to My Account'),
(48, 'EN', 'change_pass', 'Change Password'),
(49, 'EN', 'error_login', 'Error Loggin in'),
(50, 'EN', 'pass', 'Password'),
(51, 'EN', 'old_pass', 'Old Password'),
(52, 'EN', 'repeat_pass', 'Repeat Password'),
(53, 'EN', 'not_set', 'Not set yet!'),
(54, 'EN', 'set', 'Set'),
(55, 'EN', 'pass_must_match', 'Your password and old password cant match'),
(56, 'EN', 'dont_have_account', 'If you don''t have account please register!'),
(57, 'EN', 'contact', 'Contact'),
(58, 'EN', 'error', 'Something goes wrong!'),
(59, 'EN', 'complete_right', 'Complete right all the fields.'),
(60, 'EN', 'star_obligatory', '(Fields with * are obligatory)'),
(61, 'EN', 'yes', 'Yes'),
(62, 'EN', 'no', 'No'),
(63, 'EN', '4', 'Quad'),
(64, 'EN', '2', 'Dual'),
(65, 'EN', '8', 'Octa'),
(66, 'EN', '8', 'Octa'),
(67, 'EN', 'Card_reader', 'Card Reader'),
(68, 'EN', 'Num_pad', 'Numeric Pad'),
(69, 'EN', 'Microfon', 'Microphone'),
(70, 'EN', 'Camera', 'Camera'),
(71, 'EN', 'Audio', 'Audio'),
(72, 'EN', 'DVD', 'DVD'),
(73, 'EN', 'RJ_45', 'RJ 47'),
(74, 'EN', 'VGA', 'VGA'),
(75, 'EN', 'HDMI', 'HDMI'),
(76, 'EN', 'USB3_0', 'USB 3.0'),
(77, 'EN', 'USB2_0', 'USB 2.0'),
(78, 'EN', 'Wifi', 'Wifi'),
(79, 'EN', 'Bluetooth', 'Bluetooth'),
(80, 'EN', 'Price', 'Price'),
(81, 'EN', 'Cover', 'Cover'),
(82, 'EN', 'Capacitate_Video', 'Video Capacity'),
(83, 'EN', 'Video', 'Video'),
(84, 'EN', 'Tip_capacitate', 'Capacity Type'),
(85, 'EN', 'Capacitate', 'Capacity'),
(86, 'EN', 'RAM', 'RAM'),
(87, 'EN', 'Greutate', 'Weight'),
(88, 'EN', 'Dimensiune', 'Size'),
(89, 'EN', 'Sistem_Operare', 'Operation System'),
(90, 'EN', 'Alimentare', 'Power'),
(91, 'EN', 'Diagonala', 'Diagonal'),
(92, 'EN', 'Rezolutie', 'Resolution'),
(93, 'EN', 'Display', 'Display'),
(94, 'EN', 'Tip_Procesor', 'Processor Type'),
(95, 'EN', 'Frecventa', 'Frequency'),
(96, 'EN', 'Nuclee', 'Cores'),
(97, 'EN', 'Model_Procesor', 'Processor Model'),
(98, 'EN', 'Procesor', 'Processor'),
(99, 'EN', 'Culoare', 'Color'),
(100, 'EN', 'Serie', 'Series'),
(101, 'EN', 'Model', 'Model'),
(102, 'EN', 'Firma', 'Firm'),
(103, 'EN', 'Tastatura', 'Keyboard'),
(104, 'EN', '2G', '2G'),
(105, 'EN', '3G', '3G'),
(106, 'EN', '4G', '4G'),
(107, 'EN', 'SIM', 'SIM'),
(108, 'EN', 'SIM_Slots', 'Sim Slots'),
(109, 'EN', 'GPS', 'GPS'),
(110, 'EN', 'Rezolutie_Display', 'Display Resolution'),
(111, 'EN', 'TouchScreen', 'Touch Screen'),
(112, 'EN', 'Tehnologie_Display', 'Display Tehnologi'),
(113, 'EN', 'TouchScreen', 'Touch Screen'),
(114, 'EN', 'Culori_K', 'K Colors'),
(115, 'EN', 'SlotMemorie', 'Memory slot'),
(116, 'EN', 'SlotMemorie_Limit', 'Memory slot limit'),
(117, 'EN', 'Memorie', 'Memory'),
(118, 'EN', 'GPRS', 'GPRS'),
(119, 'EN', 'NFC', 'NFC'),
(120, 'EN', 'USB', 'USB'),
(121, 'EN', 'Audio_Jack', 'Audio Jack'),
(122, 'EN', 'Camera', 'Camera'),
(123, 'EN', 'Rezoltie_Camera', 'Camera Resolution'),
(124, 'EN', 'Rezolutie_Foto', 'Photo Resolutin'),
(125, 'EN', 'Rezolutie_Video', 'Video Resolution'),
(126, 'EN', 'Blitz', 'Flash'),
(127, 'EN', 'Camera_Frontala', 'Frontal Camera'),
(128, 'EN', 'Blitz_Frontal', 'Frontal Flash'),
(129, 'EN', 'Sensor_Frontal', 'Frontal Sensor'),
(130, 'EN', 'Baterie', 'Batery'),
(131, 'EN', 'Capacitate_Baterie', 'Batery Capacity'),
(132, 'EN', 'Producator_Chipset', 'Chipset Manufacturer'),
(133, 'EN', 'Serie_Chipset', 'Chipset Series'),
(134, 'EN', 'Model_Chipset', 'Chipset Model'),
(135, 'EN', 'FingerPrint', 'Finger Print'),
(136, 'EN', 'Radio', 'Radio'),
(137, 'EN', 'MultiTouch', 'Multi Touch'),
(138, 'RO', 'myaccount', 'Pagina Mea'),
(139, 'RO', 'search', 'Cautare'),
(140, 'RO', 'register', 'Inregistrare'),
(141, 'RO', 'login', 'Logare'),
(142, 'RO', 'currently_logged', 'Esti logat ca'),
(143, 'RO', 'mycart', 'Cosul Meu'),
(144, 'RO', 'logout', 'Delogare'),
(145, 'RO', 'admin_panel', 'Panoul Administratorului'),
(146, 'RO', 'rights', 'Privilegii'),
(147, 'RO', 'database_manage', 'Manipulare Baza de date'),
(148, 'RO', 'top_sell', 'Cele mai vindute'),
(149, 'RO', 'phones', 'Telefoane'),
(150, 'RO', 'phone', 'Telefon'),
(151, 'RO', 'sale', 'Reducere'),
(152, 'RO', 'categories', 'Categorii'),
(153, 'RO', 'info', 'Informatii'),
(154, 'RO', 'others', 'Altele'),
(155, 'RO', 'news_subs', 'Abonare Noutati'),
(156, 'RO', 'email_subs', 'Abonare Email'),
(157, 'RO', 'subscribe', 'Abonare'),
(158, 'RO', 'about', 'Despre Noi'),
(159, 'RO', 'team', 'Echipa'),
(160, 'RO', 'shops', 'Magazine'),
(161, 'RO', 'refunds', 'Returnari'),
(162, 'RO', 'refund', 'Returnare'),
(163, 'RO', 'delivery', 'Livrare'),
(164, 'RO', 'garanty', 'Garantii'),
(165, 'RO', 'copyright', 'Drepturi rezervate de catre Clopotel.md © Magazin Online 2016.'),
(166, 'RO', 'personal_info', 'Informatie personala'),
(167, 'RO', 'username', 'Nume utilizator'),
(168, 'RO', 'role', 'Rol'),
(169, 'RO', 'first_name', 'Nume'),
(170, 'RO', 'last_name', 'Prenume'),
(171, 'RO', 'date_entered', 'Data inregistrarii'),
(172, 'RO', 'adress', 'Adresa'),
(173, 'RO', 'adresses', 'Adrese'),
(174, 'RO', 'billing_adress', 'Adresa Facturare'),
(175, 'RO', 'billing_adresses', 'Adrese Facturare'),
(176, 'RO', 'change', 'Modifica'),
(177, 'RO', 'region', 'Raion/Judet'),
(178, 'RO', 'city', 'Oras'),
(179, 'RO', 'postal_code', 'Cod Postal'),
(180, 'RO', 'street', 'Strada'),
(181, 'RO', 'build', 'Cladire'),
(182, 'RO', 'door', 'Usa'),
(183, 'RO', 'change_adress', 'Schimba Adresa'),
(184, 'RO', 'back_to_acc', 'Inapoi la pagina mea'),
(185, 'RO', 'change_pass', 'Modifica Parola'),
(186, 'RO', 'error_login', 'Eroare Logare'),
(187, 'RO', 'pass', 'Parola'),
(188, 'RO', 'old_pass', 'Parola Veche'),
(189, 'RO', 'repeat_pass', 'Repeta Parola'),
(190, 'RO', 'not_set', 'Inca nu e setat'),
(191, 'RO', 'set', 'Seteaza'),
(192, 'RO', 'pass_must_match', 'Parolele trebuie sa coincida!'),
(193, 'RO', 'dont_have_account', 'Daca nu ai account te rog inregistreaza-te!'),
(194, 'RO', 'contact', 'Contact'),
(195, 'RO', 'error', 'Ceva nu a mers dupa planul nostru!..'),
(196, 'RO', 'complete_right', 'Trebuie sa completezi corect toate campurile!'),
(197, 'RO', 'star_obligatory', '(Cumpurile cu * sunt obligatorii)'),
(198, 'RO', 'yes', 'Da'),
(199, 'RO', 'no', 'Nu'),
(200, 'RO', '4', 'Quad'),
(201, 'RO', '2', 'Dual'),
(202, 'RO', '8', 'Octa'),
(203, 'RO', '8', 'Octa'),
(204, 'RO', 'Card_reader Cititor de Carduri', NULL),
(205, 'RO', 'Num_pad', 'Tastatura Numerica'),
(206, 'RO', 'Microfon', 'Microfon'),
(207, 'RO', 'Camera', 'Camera'),
(208, 'RO', 'Audio', 'Audio'),
(209, 'RO', 'DVD', 'DVD'),
(210, 'RO', 'RJ_45', 'RJ 47'),
(211, 'RO', 'VGA', 'VGA'),
(212, 'RO', 'HDMI', 'HDMI'),
(213, 'RO', 'USB3_0', 'USB 3.0'),
(214, 'RO', 'USB2_0', 'USB 2.0'),
(215, 'RO', 'Wifi', 'Wifi'),
(216, 'RO', 'Bluetooth', 'Bluetooth'),
(217, 'RO', 'Price', 'Pret'),
(218, 'RO', 'Cover', 'Coperta'),
(219, 'RO', 'Capacitate_Video', 'Capacitate Video'),
(220, 'RO', 'Video', 'Video'),
(221, 'RO', 'Tip_capacitate', 'Tip Capacite'),
(222, 'RO', 'Capacitate', 'Capacite'),
(223, 'RO', 'RAM', 'RAM'),
(224, 'RO', 'Greutate', 'Greutate'),
(225, 'RO', 'Dimensiune', 'Dimensiune'),
(226, 'RO', 'Sistem_Operare', 'Sistem de operare'),
(227, 'RO', 'Alimentare', 'Alimentare'),
(228, 'RO', 'Diagonala', 'Diagonala'),
(229, 'RO', 'Rezolutie', 'Rezolutie'),
(230, 'RO', 'Display', 'Ecran'),
(231, 'RO', 'Tip_Procesor', 'Tip Procesor'),
(232, 'RO', 'Frecventa', 'Frecventa'),
(233, 'RO', 'Nuclee', 'Nuclee'),
(234, 'RO', 'Model_Procesor', 'Model Procesor'),
(235, 'RO', 'Procesor', 'Procesor'),
(236, 'RO', 'Culoare', 'Culoare'),
(237, 'RO', 'Serie', 'Serie'),
(238, 'RO', 'Model', 'Model'),
(239, 'RO', 'Firma', 'Firma'),
(240, 'RO', 'Tastatura', 'Tastatura'),
(241, 'RO', '2G', '2G'),
(242, 'RO', '3G', '3G'),
(243, 'RO', '4G', '4G'),
(244, 'RO', 'SIM', 'SIM'),
(245, 'RO', 'SIM_Slots', 'Sloturi Sim'),
(246, 'RO', 'GPS', 'GPS'),
(247, 'RO', 'Rezolutie_Display', 'Rezolutie Ecran'),
(248, 'RO', 'TouchScreen', 'Ecran Tactil'),
(249, 'RO', 'Tehnologie_Display', 'Tehnologie Ecran'),
(250, 'RO', 'Culori_K', 'Colori K'),
(251, 'RO', 'SlotMemorie', 'Slot Memorie'),
(252, 'RO', 'SlotMemorie_Limit', 'Limita Slot Memorie'),
(253, 'RO', 'Memorie', 'Memorie'),
(254, 'RO', 'GPRS', 'GPRS'),
(255, 'RO', 'NFC', 'NFC'),
(256, 'RO', 'USB', 'USB'),
(257, 'RO', 'Audio_Jack', 'Audio Jack'),
(258, 'RO', 'Camera', 'Camera'),
(259, 'RO', 'Rezoltie_Camera', 'Rezolutie Camera'),
(260, 'RO', 'Rezolutie_Foto', 'Rezolutie Poze'),
(261, 'RO', 'Rezolutie_Video', 'Rezolutie Video'),
(262, 'RO', 'Blitz', 'Blitz'),
(263, 'RO', 'Camera_Frontala', 'Camera Frontala'),
(264, 'RO', 'Blitz_Frontal', 'Blitz Frontal'),
(265, 'RO', 'Sensor_Frontal', 'Sensor Frontal'),
(266, 'RO', 'Baterie', 'Baterie'),
(267, 'RO', 'Capacitate_Baterie', 'Capacitate Baterie'),
(268, 'RO', 'Producator_Chipset', 'Producator Chipset'),
(269, 'RO', 'Serie_Chipset', 'Serie Chipset'),
(270, 'RO', 'Model_Chipset', 'Model Chipset'),
(271, 'RO', 'FingerPrint', 'Amprenta Digitala'),
(272, 'RO', 'Radio', 'Radio'),
(273, 'RO', 'MultiTouch', 'Atingera multipla'),
(274, 'EN', 'popularity', 'Popularity'),
(275, 'EN', 'rating', 'Rating'),
(276, 'EN', 'lower_up', 'Lower > Upper'),
(277, 'EN', 'upper_low', 'Upper > Lower'),
(278, 'EN', 'name', 'Name'),
(279, 'RO', 'popularity', 'Popularitate'),
(280, 'RO', 'rating', 'Rating'),
(281, 'RO', 'lower_up', 'Mic > Mare'),
(282, 'RO', 'upper_low', 'Mare > Mic'),
(283, 'RO', 'name', 'Nume'),
(284, 'EN', 'az', 'A-Z'),
(285, 'EN', 'za', 'Z-A'),
(286, 'RO', 'az', 'A-Z'),
(287, 'RO', 'za', 'Z-A'),
(288, 'EN', 'sort', 'Sort'),
(289, 'RO', 'sort', 'Sortare'),
(290, 'EN', 'Chipset', 'Chipset'),
(291, 'RO', 'Chipset', 'Chipset'),
(292, 'EN', 'filter', 'Filter'),
(293, 'RO', 'filter', 'Filtrare'),
(294, 'RO', 'top_sale', 'Top Vinzari'),
(295, 'EN', 'top_sale', 'Top Sales'),
(296, 'EN', 'notebooks', 'Notebooks'),
(297, 'EN', 'phones', 'Phones'),
(298, 'RO', 'notebooks', 'Laptopuri'),
(299, 'RO', 'phones', 'Telefoane'),
(300, 'RO', 'en', 'Engleza'),
(301, 'RO', 'ro', 'Romana'),
(302, 'RO', 'ru', 'Rusa'),
(303, 'EN', 'en', 'English'),
(304, 'EN', 'ro', 'Romanian'),
(305, 'EN', 'ru', 'Russian'),
(306, 'EN', 'registration', 'Registration'),
(307, 'RO', 'registration', 'Inregistrare'),
(308, 'RO', 'repeat_email', 'Repeta Adresa Email'),
(309, 'EN', 'repeat_email', 'Repeat Email Adress'),
(310, 'EN', 'sign_up_news', 'Signg up for our newsletter'),
(311, 'RO', 'sign_up_news', 'Aboneazate la noutatile noastre'),
(312, 'RO', 'send_notif', 'Trimite notificari la acest email'),
(313, 'EN', 'send_notif', 'Send notifications to this email'),
(314, 'EN', 'rules', 'Rules'),
(315, 'RO', 'rules', 'Reguli'),
(316, 'EN', 'rule1', 'Usernames may contain only digits, upper and lowercase letters and underscores'),
(317, 'EN', 'rule2', 'Emails must have a valid email format'),
(318, 'EN', 'rule3', 'Passwords must be at least 6 characters long'),
(319, 'EN', 'rule4', 'Passwords must contain'),
(320, 'EN', 'rule5', 'At least one uppercase letter (A..Z)'),
(321, 'EN', 'rule6', 'At least one lowercase letter (a..z)'),
(322, 'EN', 'rule7', 'At least one number (0..9)'),
(323, 'EN', 'rule8', 'Your password and confirmation must match exactly'),
(324, 'EN', 'back_to_login', 'Return to login Page.'),
(325, 'RO', 'rule1', 'Numele de utilizator poate contine doar cifre, litere mici si mari si subliniere.'),
(326, 'RO', 'rule2', 'Emailul trebuie sa contina un format valid!'),
(327, 'RO', 'rule3', 'Parola trebuie sa fie de cel putin 6 caractere lungime!'),
(328, 'RO', 'rule4', 'Parola trebuie sa contina'),
(329, 'RO', 'rule5', 'Cel putin o litera mare (A..Z)'),
(330, 'RO', 'rule6', 'Cel putin o litera mica(a..z)'),
(331, 'RO', 'rule7', 'Cel putin o cifra(0..9)'),
(332, 'RO', 'rule8', 'Parolele trebuie sa coincida!'),
(333, 'RO', 'back_to_login', 'Inapoi la pagina de logare.'),
(334, 'RO', 'email', 'Adresa Email'),
(335, 'EN', 'email', 'Email Adress'),
(336, 'RO', 'search_rule', 'Continutul cautarii trebuie sa contina minim 4 caractere!'),
(337, 'EN', 'search_rule', 'Search string must have at least 4 characters!'),
(338, 'EN', 'nothing_found', 'Nothing Found!'),
(339, 'RO', 'nothing_found', 'Nu am gasit nici un element!'),
(340, 'EN', 'succes_change', 'Data been successful changed!'),
(341, 'RO', 'succes_change', 'Datele au fost modificate cu succes!'),
(342, 'EN', 'product', 'Product'),
(343, 'RO', 'product', 'Product'),
(344, 'EN', 'price', 'Price'),
(345, 'RO', 'price', 'Pret'),
(346, 'EN', 'quantity', 'Quantity'),
(347, 'RO', 'quantity', 'Cantitate'),
(348, 'EN', 'subtotal', 'Subtotal'),
(349, 'RO', 'subtotal', 'Subtotal'),
(350, 'EN', 'total', 'Total'),
(351, 'RO', 'total', 'Total'),
(352, 'EN', 'continue_shopping', 'Continue Shopping'),
(353, 'RO', 'continue_shopping', 'Continua cumparaturile'),
(354, 'EN', 'checkout', 'Checkout'),
(355, 'RO', 'checkout', 'Achita cumparaturile'),
(356, 'EN', 'addToCart', 'Add to Cart'),
(357, 'RO', 'addToCart', 'Adauga in Cos'),
(358, 'EN', 'negativeCartUpdate', 'Item Count cant be negative! Use delete function instead!'),
(359, 'RO', 'negativeCartUpdate', 'Cantitatea de iteme nu poate fi negativa, va rugam sa folositi functia delete pentru a sterge!');
-- --------------------------------------------------------
--
-- Table structure for table `View`
--
CREATE TABLE IF NOT EXISTS `View` (
`ID` int(11) NOT NULL,
`members` int(11) NOT NULL,
`category` int(11) NOT NULL,
`item` int(11) NOT NULL,
`Date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `View`
--
INSERT INTO `View` (`ID`, `members`, `category`, `item`, `Date`) VALUES
(1, 2, 2, 2, '2017-03-27 07:35:34'),
(2, 2, 2, 2, '2017-03-27 07:35:41'),
(3, 2, 2, 2, '2017-03-27 12:54:41'),
(4, 2, 2, 2, '2017-03-27 14:06:25'),
(5, 2, 1, 3, '2017-03-27 14:06:29'),
(6, 2, 1, 1, '2017-03-27 14:11:06'),
(7, 2, 1, 1, '2017-03-27 14:12:12'),
(8, 2, 1, 1, '2017-03-27 14:12:32'),
(9, 2, 1, 1, '2017-03-27 14:16:10'),
(10, 2, 1, 1, '2017-03-27 14:18:01'),
(11, 2, 1, 1, '2017-03-27 14:19:00'),
(12, 2, 1, 1, '2017-03-27 14:20:29'),
(13, 2, 1, 1, '2017-03-27 14:21:04'),
(14, 2, 1, 1, '2017-03-27 14:21:08'),
(15, 2, 1, 1, '2017-03-27 14:21:11'),
(16, 2, 1, 1, '2017-03-27 14:21:20'),
(17, 2, 1, 1, '2017-03-27 14:21:38'),
(18, 2, 1, 1, '2017-03-27 14:21:42'),
(19, 2, 1, 1, '2017-03-27 14:21:49'),
(20, 2, 1, 1, '2017-03-27 14:21:51'),
(21, 2, 1, 1, '2017-03-27 14:21:57'),
(22, 2, 1, 1, '2017-03-27 14:22:03'),
(23, 2, 1, 1, '2017-03-27 14:22:14'),
(24, 2, 1, 1, '2017-03-27 14:22:18'),
(25, 2, 1, 1, '2017-03-27 14:22:37'),
(26, 2, 2, 2, '2017-03-27 14:22:41'),
(27, 2, 2, 2, '2017-03-27 14:23:00'),
(28, 2, 1, 1, '2017-03-27 14:23:02'),
(29, 2, 1, 1, '2017-03-27 14:23:11'),
(30, 2, 1, 1, '2017-03-27 14:23:15'),
(31, 2, 1, 1, '2017-03-28 05:06:16'),
(32, 2, 1, 2, '2017-03-28 05:09:43'),
(33, 2, 1, 2, '2017-03-28 05:11:33'),
(34, 2, 1, 2, '2017-03-28 05:11:51'),
(35, 2, 1, 2, '2017-03-28 05:12:16'),
(36, 2, 1, 2, '2017-03-28 05:12:31'),
(37, 2, 1, 1, '2017-03-28 05:41:34');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `Cart`
--
ALTER TABLE `Cart`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `Categorie`
--
ALTER TABLE `Categorie`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `Subcategorie`
--
ALTER TABLE `Subcategorie`
ADD PRIMARY KEY (`ID`),
ADD KEY `subcat_cat` (`ID_Categorie`);
--
-- Indexes for table `Tip`
--
ALTER TABLE `Tip`
ADD PRIMARY KEY (`ID`),
ADD KEY `Tip_subcategorie` (`ID_Subcategorie`);
--
-- Indexes for table `Translate`
--
ALTER TABLE `Translate`
ADD PRIMARY KEY (`ID`),
ADD KEY `translate` (`KeyWord`) USING BTREE;
--
-- Indexes for table `View`
--
ALTER TABLE `View`
ADD PRIMARY KEY (`ID`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `Cart`
--
ALTER TABLE `Cart`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=21;
--
-- AUTO_INCREMENT for table `Categorie`
--
ALTER TABLE `Categorie`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `Subcategorie`
--
ALTER TABLE `Subcategorie`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `Tip`
--
ALTER TABLE `Tip`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=78;
--
-- AUTO_INCREMENT for table `Translate`
--
ALTER TABLE `Translate`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=360;
--
-- AUTO_INCREMENT for table `View`
--
ALTER TABLE `View`
MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=38;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `Subcategorie`
--
ALTER TABLE `Subcategorie`
ADD CONSTRAINT `subcat_cat` FOREIGN KEY (`ID_Categorie`) REFERENCES `Categorie` (`ID`) ON UPDATE CASCADE;
--
-- Constraints for table `Tip`
--
ALTER TABLE `Tip`
ADD CONSTRAINT `Tip_subcategorie` FOREIGN KEY (`ID_Subcategorie`) REFERENCES `Subcategorie` (`ID`) ON UPDATE CASCADE;
--
-- Database: `notebook`
--
-- --------------------------------------------------------
--
-- Table structure for table `Alimentare`
--
CREATE TABLE IF NOT EXISTS `Alimentare` (
`ID` int(11) NOT NULL,
`Alimentare` varchar(255) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Alimentare`
--
INSERT INTO `Alimentare` (`ID`, `Alimentare`) VALUES
(1, 'Li-Ion'),
(2, 'Lithium'),
(3, 'Li-Pol');
-- --------------------------------------------------------
--
-- Table structure for table `Culoare`
--
CREATE TABLE IF NOT EXISTS `Culoare` (
`ID` int(11) NOT NULL,
`Culoare` varchar(255) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Culoare`
--
INSERT INTO `Culoare` (`ID`, `Culoare`) VALUES
(1, 'Black'),
(2, 'White'),
(3, 'Grey'),
(4, 'Gold'),
(5, 'Dark Blue'),
(6, 'Aluminium'),
(7, 'Pink'),
(8, 'Blue');
-- --------------------------------------------------------
--
-- Table structure for table `Display`
--
CREATE TABLE IF NOT EXISTS `Display` (
`ID` int(11) NOT NULL,
`Display` varchar(255) DEFAULT NULL,
`Rezolutie` varchar(255) DEFAULT NULL,
`Diagonala` varchar(255) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Display`
--
INSERT INTO `Display` (`ID`, `Display`, `Rezolutie`, `Diagonala`) VALUES
(1, 'LED', '1366x768', '15.6'),
(2, 'LED', '3840x2160', '15.6'),
(3, 'Retina LED IPS', '2560x1600', '13.3');
-- --------------------------------------------------------
--
-- Table structure for table `Firma`
--
CREATE TABLE IF NOT EXISTS `Firma` (
`ID` int(11) NOT NULL,
`Firma` varchar(255) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Firma`
--
INSERT INTO `Firma` (`ID`, `Firma`) VALUES
(1, 'Asus'),
(2, 'Acer'),
(3, 'Lenovo'),
(4, 'HP'),
(5, 'Dell'),
(6, 'Apple');
-- --------------------------------------------------------
--
-- Table structure for table `Model`
--
CREATE TABLE IF NOT EXISTS `Model` (
`ID` int(11) NOT NULL,
`Model` varchar(255) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Model`
--
INSERT INTO `Model` (`ID`, `Model`) VALUES
(1, 'Y70'),
(2, 'G50-30'),
(3, 'DM080D'),
(4, '13');
-- --------------------------------------------------------
--
-- Table structure for table `Procesor`
--
CREATE TABLE IF NOT EXISTS `Procesor` (
`ID` int(11) NOT NULL,
`Procesor` enum('Intel','Amd') DEFAULT NULL,
`Model_Procesor` varchar(255) DEFAULT NULL,
`Nuclee` int(3) DEFAULT NULL,
`Frecventa` varchar(255) DEFAULT NULL,
`Tip_procesor` int(11) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Procesor`
--
INSERT INTO `Procesor` (`ID`, `Procesor`, `Model_Procesor`, `Nuclee`, `Frecventa`, `Tip_procesor`) VALUES
(1, 'Intel', 'N3530', 4, '2160', 2),
(2, 'Intel', '6500U', 2, '2500', 6),
(3, 'Intel', 'MF839', 2, '2700', 5);
-- --------------------------------------------------------
--
-- Table structure for table `Serie`
--
CREATE TABLE IF NOT EXISTS `Serie` (
`ID` int(11) NOT NULL,
`Serie` varchar(255) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Serie`
--
INSERT INTO `Serie` (`ID`, `Serie`) VALUES
(1, 'ROG'),
(2, 'IdeaPad'),
(3, 'K501UX'),
(4, 'MacBook '),
(5, 'MacBook Pro');
-- --------------------------------------------------------
--
-- Table structure for table `Sistem_Operare`
--
CREATE TABLE IF NOT EXISTS `Sistem_Operare` (
`ID` int(11) NOT NULL,
`Sistem_Operare` varchar(255) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Sistem_Operare`
--
INSERT INTO `Sistem_Operare` (`ID`, `Sistem_Operare`) VALUES
(1, 'Free-DOS'),
(2, 'Windows'),
(3, 'Linux'),
(4, 'Ubuntu'),
(5, 'MacOS');
-- --------------------------------------------------------
--
-- Table structure for table `Tip_Procesor`
--
CREATE TABLE IF NOT EXISTS `Tip_Procesor` (
`ID` int(11) NOT NULL,
`Tip_Procesor` varchar(255) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `Tip_Procesor`
--
INSERT INTO `Tip_Procesor` (`ID`, `Tip_Procesor`) VALUES
(1, 'Dual Core'),
(2, 'Quad Core'),
(3, 'Octa Core'),
(4, 'i3'),
(5, 'i5'),
(6, 'i7');
-- --------------------------------------------------------
--
-- Table structure for table `notebook`
--
CREATE TABLE IF NOT EXISTS `notebook` (
`ID` int(11) NOT NULL,
`ID_Firma` int(11) DEFAULT NULL,
`ID_Serie` int(11) DEFAULT NULL,
`ID_Model` int(11) DEFAULT NULL,
`ID_Culoare` int(11) DEFAULT NULL,
`Dimensiune` varchar(20) DEFAULT NULL,
`Greutate` float(10,0) DEFAULT NULL COMMENT 'grame',
`ID_Procesor` int(11) DEFAULT NULL,
`ID_Display` int(11) DEFAULT NULL,
`Ram` int(3) DEFAULT NULL,
`Capacitate` varchar(255) DEFAULT NULL,
`Tip_capacitate` enum('SSD','HDD','SSD/HDD') DEFAULT 'HDD' COMMENT 'hdd/ssd',
`Video` enum('Integrata','Dedicata') DEFAULT 'Integrata',
`Capacitate_Video` varchar(255) DEFAULT NULL,
`Bluetooth` tinyint(1) DEFAULT NULL,
`Wifi` tinyint(1) DEFAULT NULL,
`USB2_0` tinyint(1) DEFAULT NULL,
`USB3_0` tinyint(1) DEFAULT NULL,
`HDMI` tinyint(1) DEFAULT NULL,
`VGA` tinyint(1) DEFAULT NULL,
`RJ_45` tinyint(1) DEFAULT NULL,
`ID_Alimentare` int(11) DEFAULT NULL COMMENT 'Li-Ion',
`Audio` tinyint(1) DEFAULT NULL,
`DVD` tinyint(1) DEFAULT NULL,
`Camera` varchar(255) DEFAULT NULL,
`Microfon` tinyint(1) DEFAULT NULL,
`Card_reader` tinyint(1) DEFAULT NULL,
`Num_pad` tinyint(1) DEFAULT NULL,
`ID_Sistem_Operare` int(11) DEFAULT NULL,
`Cover` varchar(255) DEFAULT NULL,
`Price` decimal(10,2) DEFAULT NULL,
`Sale` decimal(10,2) DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1;
--
-- Dumping data for table `notebook`
--
INSERT INTO `notebook` (`ID`, `ID_Firma`, `ID_Serie`, `ID_Model`, `ID_Culoare`, `Dimensiune`, `Greutate`, `ID_Procesor`, `ID_Display`, `Ram`, `Capacitate`, `Tip_capacitate`, `Video`, `Capacitate_Video`, `Bluetooth`, `Wifi`, `USB2_0`, `USB3_0`, `HDMI`, `VGA`, `RJ_45`, `ID_Alimentare`, `Audio`, `DVD`, `Camera`, `Microfon`, `Card_reader`, `Num_pad`, `ID_Sistem_Operare`, `Cover`, `Price`, `Sale`) VALUES
(1, 3, 2, 2, 1, '384x265x25', 2500, 1, 1, 4, '500', 'HDD', 'Integrata', '1024', 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 'HD', 1, 1, 1, 1, 'img/notebook/1.jpg', 5000.00, NULL),
(2, 1, 3, 3, 3, '382x255x21.7', 2000, 2, 2, 4, '1000', 'HDD', 'Integrata', '2048', 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 'HD', 1, 0, 1, 1, 'img/notebook/2.jpg', 20990.00, NULL),
(3, 6, 5, 4, 6, '314x219x18', 1580, 3, 3, 8, '128', 'SSD', 'Integrata', '1024', 1, 1, 0, 1, 1, 1, 0, 3, 1, 1, 'FaceTime HD 720p', 1, 1, 0, 5, 'img/notebook/3.jpg', 27490.00, NULL);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `Alimentare`
--
ALTER TABLE `Alimentare`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `Culoare`
--
ALTER TABLE `Culoare`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `Display`
--
ALTER TABLE `Display`
ADD PRIMARY KEY (`ID`);
--
-- Indexes for table `Firma`
--