-
Notifications
You must be signed in to change notification settings - Fork 0
/
DATABASE.sql
502 lines (476 loc) · 50.8 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
-- phpMyAdmin SQL Dump
-- version 4.1.8
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jul 17, 2014 at 10:07 PM
-- Server version: 5.5.37-cll
-- PHP Version: 5.4.23
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 */;
--
-- Database: `oryzhonc_marketplace`
--
-- --------------------------------------------------------
--
-- Table structure for table `accounts`
--
CREATE TABLE IF NOT EXISTS `accounts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`twitterid` bigint(20) unsigned NOT NULL,
`facebookid` bigint(20) unsigned NOT NULL,
`googleid` bigint(25) unsigned NOT NULL,
`username` varchar(26) NOT NULL,
`password` varchar(520) NOT NULL,
`nome` text NOT NULL,
`telefone` varchar(9) DEFAULT '999999999',
`email` varchar(85) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
--
-- Dumping data for table `accounts`
--
INSERT INTO `accounts` (`id`, `twitterid`, `facebookid`, `googleid`, `username`, `password`, `nome`, `telefone`, `email`) VALUES
(1, 0, 0, 18446744073709551615, 'vitorpegas95g', 'd80193f483a1b726a04983577cdff06a313e906a8a102cc74369deea42493c0b96f5af3ad8d1af0a6a647f0fc425dc736520910fe5f256a7f59e5fecdc10742d', 'Vitor PÃgas', '999999999', '[email protected]'),
(2, 0, 650739904994079, 0, '65073Vitor', '1f3f56bce6fb5373417a4f07dc5bc74b76f320f73ef8f3e75f96cb7f1a5dd6792554ef2d5e7d1c0f9aba0af01bda36eb7411aa0a8a2ac2983c8e552215d664ef', 'Vitor Pêgas', '999999999', ''),
(3, 2265800234, 0, 0, 'VitorPegas95', '5d4215459b8937d7da4dd78f90662c8c63dfc08555ccb0a6a11cfe82607ec51a140c6f24bd77884507088d4a498efeee3d44176833dd614b57486047f92479f0', 'VitorPegas95', '999999999', '');
-- --------------------------------------------------------
--
-- Table structure for table `category`
--
CREATE TABLE IF NOT EXISTS `category` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=13 ;
--
-- Dumping data for table `category`
--
INSERT INTO `category` (`id`, `name`) VALUES
(1, 'Fashion'),
(2, 'Leisure'),
(3, 'Services'),
(4, 'Pets'),
(5, 'Sports'),
(6, 'Homes'),
(7, 'Vehicles'),
(8, 'Technology'),
(9, 'Furniture'),
(10, 'Phones'),
(11, 'Jobs'),
(12, 'Other');
-- --------------------------------------------------------
--
-- Table structure for table `messages`
--
CREATE TABLE IF NOT EXISTS `messages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`sender` int(11) NOT NULL,
`receiver` int(11) NOT NULL,
`subject` varchar(50) NOT NULL,
`message` text NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `product`
--
CREATE TABLE IF NOT EXISTS `product` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`img` text NOT NULL,
`description` text NOT NULL,
`price` double NOT NULL,
`owner` int(11) NOT NULL,
`date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`tags` text NOT NULL,
`category` varchar(30) NOT NULL,
`city` varchar(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=365 ;
--
-- Dumping data for table `product`
--
INSERT INTO `product` (`id`, `name`, `img`, `description`, `price`, `owner`, `date`, `tags`, `category`, `city`) VALUES
(1, 'Chervolet Camaro', 'uploads/images/53a08f12ae3d22.30468399.jpg', 'This is a good car, trust me.', 999999, 1, '2014-06-17 18:55:14', 'chervolet, camaro, used', 'Vehicles', 'Lisboa'),
(2, 'Audi R8', 'uploads/images/53a2cbc6e7e1f5.27577490.jpg', 'This is totally mine... I bought it hum.. 3 years ago..? And I want to sell it.. quick.. i need cash...', 1200, 2, '2014-06-19 11:38:46', 'audi, r8, new', 'Vehicles', 'Lisbon'),
(5, 'Product 0', 'img/product.png', 'This is a test product', 125689, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(6, 'Product 1', 'img/product.png', 'This is a test product', 15632, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(7, 'Product 2', 'img/product.png', 'This is a test product', 144723, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(8, 'Product 3', 'img/product.png', 'This is a test product', 44577, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(9, 'Product 4', 'img/product.png', 'This is a test product', 62008, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(10, 'Product 5', 'img/product.png', 'This is a test product', 88291, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(11, 'Product 6', 'img/product.png', 'This is a test product', 132126, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(12, 'Product 7', 'img/product.png', 'This is a test product', 480, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(13, 'Product 8', 'img/product.png', 'This is a test product', 68719, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(14, 'Product 9', 'img/product.png', 'This is a test product', 24141, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(15, 'Product 10', 'img/product.png', 'This is a test product', 56444, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(16, 'Product 11', 'img/product.png', 'This is a test product', 14248, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(17, 'Product 12', 'img/product.png', 'This is a test product', 85696, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(18, 'Product 13', 'img/product.png', 'This is a test product', 64854, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(19, 'Product 14', 'img/product.png', 'This is a test product', 55333, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(20, 'Product 15', 'img/product.png', 'This is a test product', 129079, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(21, 'Product 16', 'img/product.png', 'This is a test product', 58939, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(22, 'Product 17', 'img/product.png', 'This is a test product', 139129, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(23, 'Product 18', 'img/product.png', 'This is a test product', 27940, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(24, 'Product 19', 'img/product.png', 'This is a test product', 33564, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(25, 'Product 20', 'img/product.png', 'This is a test product', 50929, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(26, 'Product 21', 'img/product.png', 'This is a test product', 56001, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(27, 'Product 22', 'img/product.png', 'This is a test product', 97418, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(28, 'Product 23', 'img/product.png', 'This is a test product', 135175, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(29, 'Product 24', 'img/product.png', 'This is a test product', 16555, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(30, 'Product 25', 'img/product.png', 'This is a test product', 134923, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(31, 'Product 26', 'img/product.png', 'This is a test product', 28410, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(32, 'Product 27', 'img/product.png', 'This is a test product', 107200, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(33, 'Product 28', 'img/product.png', 'This is a test product', 2901, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(34, 'Product 29', 'img/product.png', 'This is a test product', 109830, 3, '2014-06-21 23:07:11', 'product', 'Fashion', 'Lisbon'),
(35, 'Product 31', 'img/product.png', 'This is a test product', 76506, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(36, 'Product 32', 'img/product.png', 'This is a test product', 83584, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(37, 'Product 33', 'img/product.png', 'This is a test product', 140628, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(38, 'Product 34', 'img/product.png', 'This is a test product', 124591, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(39, 'Product 35', 'img/product.png', 'This is a test product', 33979, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(40, 'Product 36', 'img/product.png', 'This is a test product', 142571, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(41, 'Product 37', 'img/product.png', 'This is a test product', 41441, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(42, 'Product 38', 'img/product.png', 'This is a test product', 17616, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(43, 'Product 39', 'img/product.png', 'This is a test product', 96415, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(44, 'Product 40', 'img/product.png', 'This is a test product', 107824, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(45, 'Product 41', 'img/product.png', 'This is a test product', 15952, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(46, 'Product 42', 'img/product.png', 'This is a test product', 78226, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(47, 'Product 43', 'img/product.png', 'This is a test product', 9533, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(48, 'Product 44', 'img/product.png', 'This is a test product', 88378, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(49, 'Product 45', 'img/product.png', 'This is a test product', 80484, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(50, 'Product 46', 'img/product.png', 'This is a test product', 93564, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(51, 'Product 47', 'img/product.png', 'This is a test product', 36565, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(52, 'Product 48', 'img/product.png', 'This is a test product', 92685, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(53, 'Product 49', 'img/product.png', 'This is a test product', 64139, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(54, 'Product 50', 'img/product.png', 'This is a test product', 22502, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(55, 'Product 51', 'img/product.png', 'This is a test product', 92069, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(56, 'Product 52', 'img/product.png', 'This is a test product', 44512, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(57, 'Product 53', 'img/product.png', 'This is a test product', 44467, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(58, 'Product 54', 'img/product.png', 'This is a test product', 123317, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(59, 'Product 55', 'img/product.png', 'This is a test product', 72389, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(60, 'Product 56', 'img/product.png', 'This is a test product', 65321, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(61, 'Product 57', 'img/product.png', 'This is a test product', 32946, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(62, 'Product 58', 'img/product.png', 'This is a test product', 9519, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(63, 'Product 59', 'img/product.png', 'This is a test product', 117764, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(64, 'Product 60', 'img/product.png', 'This is a test product', 133204, 3, '2014-06-21 23:08:34', 'product', 'Leisure', 'Lisbon'),
(65, 'Product 61', 'img/product.png', 'This is a test product', 65219, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(66, 'Product 62', 'img/product.png', 'This is a test product', 147930, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(67, 'Product 63', 'img/product.png', 'This is a test product', 143678, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(68, 'Product 64', 'img/product.png', 'This is a test product', 77316, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(69, 'Product 65', 'img/product.png', 'This is a test product', 23674, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(70, 'Product 66', 'img/product.png', 'This is a test product', 32517, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(71, 'Product 67', 'img/product.png', 'This is a test product', 67610, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(72, 'Product 68', 'img/product.png', 'This is a test product', 106915, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(73, 'Product 69', 'img/product.png', 'This is a test product', 127519, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(74, 'Product 70', 'img/product.png', 'This is a test product', 46693, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(75, 'Product 71', 'img/product.png', 'This is a test product', 35829, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(76, 'Product 72', 'img/product.png', 'This is a test product', 62301, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(77, 'Product 73', 'img/product.png', 'This is a test product', 45179, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(78, 'Product 74', 'img/product.png', 'This is a test product', 58132, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(79, 'Product 75', 'img/product.png', 'This is a test product', 12282, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(80, 'Product 76', 'img/product.png', 'This is a test product', 110870, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(81, 'Product 77', 'img/product.png', 'This is a test product', 60376, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(82, 'Product 78', 'img/product.png', 'This is a test product', 100549, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(83, 'Product 79', 'img/product.png', 'This is a test product', 68006, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(84, 'Product 80', 'img/product.png', 'This is a test product', 83086, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(85, 'Product 81', 'img/product.png', 'This is a test product', 148286, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(86, 'Product 82', 'img/product.png', 'This is a test product', 148557, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(87, 'Product 83', 'img/product.png', 'This is a test product', 71639, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(88, 'Product 84', 'img/product.png', 'This is a test product', 120636, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(89, 'Product 85', 'img/product.png', 'This is a test product', 146031, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(90, 'Product 86', 'img/product.png', 'This is a test product', 65176, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(91, 'Product 87', 'img/product.png', 'This is a test product', 145972, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(92, 'Product 88', 'img/product.png', 'This is a test product', 49464, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(93, 'Product 89', 'img/product.png', 'This is a test product', 115624, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(94, 'Product 90', 'img/product.png', 'This is a test product', 13875, 3, '2014-06-21 23:08:57', 'product', 'Services', 'Lisbon'),
(95, 'Product 91', 'img/product.png', 'This is a test product', 126318, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(96, 'Product 92', 'img/product.png', 'This is a test product', 18707, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(97, 'Product 93', 'img/product.png', 'This is a test product', 119942, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(98, 'Product 94', 'img/product.png', 'This is a test product', 101845, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(99, 'Product 95', 'img/product.png', 'This is a test product', 31060, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(100, 'Product 96', 'img/product.png', 'This is a test product', 67099, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(101, 'Product 97', 'img/product.png', 'This is a test product', 9910, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(102, 'Product 98', 'img/product.png', 'This is a test product', 33917, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(103, 'Product 99', 'img/product.png', 'This is a test product', 126941, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(104, 'Product 100', 'img/product.png', 'This is a test product', 60264, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(105, 'Product 101', 'img/product.png', 'This is a test product', 146449, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(106, 'Product 102', 'img/product.png', 'This is a test product', 42150, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(107, 'Product 103', 'img/product.png', 'This is a test product', 60785, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(108, 'Product 104', 'img/product.png', 'This is a test product', 4334, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(109, 'Product 105', 'img/product.png', 'This is a test product', 11106, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(110, 'Product 106', 'img/product.png', 'This is a test product', 58781, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(111, 'Product 107', 'img/product.png', 'This is a test product', 33382, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(112, 'Product 108', 'img/product.png', 'This is a test product', 35449, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(113, 'Product 109', 'img/product.png', 'This is a test product', 71260, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(114, 'Product 110', 'img/product.png', 'This is a test product', 56820, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(115, 'Product 111', 'img/product.png', 'This is a test product', 29903, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(116, 'Product 112', 'img/product.png', 'This is a test product', 15096, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(117, 'Product 113', 'img/product.png', 'This is a test product', 117242, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(118, 'Product 114', 'img/product.png', 'This is a test product', 125775, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(119, 'Product 115', 'img/product.png', 'This is a test product', 52521, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(120, 'Product 116', 'img/product.png', 'This is a test product', 133061, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(121, 'Product 117', 'img/product.png', 'This is a test product', 29627, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(122, 'Product 118', 'img/product.png', 'This is a test product', 125102, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(123, 'Product 119', 'img/product.png', 'This is a test product', 56500, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(124, 'Product 120', 'img/product.png', 'This is a test product', 89374, 3, '2014-06-21 23:09:11', 'product', 'Pets', 'Lisbon'),
(125, 'Product 121', 'img/product.png', 'This is a test product', 96100, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(126, 'Product 122', 'img/product.png', 'This is a test product', 13567, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(127, 'Product 123', 'img/product.png', 'This is a test product', 106018, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(128, 'Product 124', 'img/product.png', 'This is a test product', 30794, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(129, 'Product 125', 'img/product.png', 'This is a test product', 22297, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(130, 'Product 126', 'img/product.png', 'This is a test product', 105229, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(131, 'Product 127', 'img/product.png', 'This is a test product', 21957, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(132, 'Product 128', 'img/product.png', 'This is a test product', 5498, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(133, 'Product 129', 'img/product.png', 'This is a test product', 54707, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(134, 'Product 130', 'img/product.png', 'This is a test product', 75149, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(135, 'Product 131', 'img/product.png', 'This is a test product', 60725, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(136, 'Product 132', 'img/product.png', 'This is a test product', 78891, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(137, 'Product 133', 'img/product.png', 'This is a test product', 51576, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(138, 'Product 134', 'img/product.png', 'This is a test product', 107145, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(139, 'Product 135', 'img/product.png', 'This is a test product', 12626, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(140, 'Product 136', 'img/product.png', 'This is a test product', 17071, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(141, 'Product 137', 'img/product.png', 'This is a test product', 100733, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(142, 'Product 138', 'img/product.png', 'This is a test product', 89637, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(143, 'Product 139', 'img/product.png', 'This is a test product', 63498, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(144, 'Product 140', 'img/product.png', 'This is a test product', 29559, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(145, 'Product 141', 'img/product.png', 'This is a test product', 145556, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(146, 'Product 142', 'img/product.png', 'This is a test product', 81254, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(147, 'Product 143', 'img/product.png', 'This is a test product', 74, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(148, 'Product 144', 'img/product.png', 'This is a test product', 67021, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(149, 'Product 145', 'img/product.png', 'This is a test product', 110958, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(150, 'Product 146', 'img/product.png', 'This is a test product', 107421, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(151, 'Product 147', 'img/product.png', 'This is a test product', 33163, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(152, 'Product 148', 'img/product.png', 'This is a test product', 90370, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(153, 'Product 149', 'img/product.png', 'This is a test product', 85167, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(154, 'Product 150', 'img/product.png', 'This is a test product', 71372, 3, '2014-06-21 23:09:26', 'product', 'Sports', 'Lisbon'),
(155, 'Product 151', 'img/product.png', 'This is a test product', 443, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(156, 'Product 152', 'img/product.png', 'This is a test product', 36116, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(157, 'Product 153', 'img/product.png', 'This is a test product', 16042, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(158, 'Product 154', 'img/product.png', 'This is a test product', 17160, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(159, 'Product 155', 'img/product.png', 'This is a test product', 28397, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(160, 'Product 156', 'img/product.png', 'This is a test product', 79849, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(161, 'Product 157', 'img/product.png', 'This is a test product', 128365, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(162, 'Product 158', 'img/product.png', 'This is a test product', 114760, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(163, 'Product 159', 'img/product.png', 'This is a test product', 74099, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(164, 'Product 160', 'img/product.png', 'This is a test product', 13876, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(165, 'Product 161', 'img/product.png', 'This is a test product', 48075, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(166, 'Product 162', 'img/product.png', 'This is a test product', 29664, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(167, 'Product 163', 'img/product.png', 'This is a test product', 95667, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(168, 'Product 164', 'img/product.png', 'This is a test product', 22486, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(169, 'Product 165', 'img/product.png', 'This is a test product', 68936, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(170, 'Product 166', 'img/product.png', 'This is a test product', 130179, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(171, 'Product 167', 'img/product.png', 'This is a test product', 68155, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(172, 'Product 168', 'img/product.png', 'This is a test product', 93818, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(173, 'Product 169', 'img/product.png', 'This is a test product', 48748, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(174, 'Product 170', 'img/product.png', 'This is a test product', 148659, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(175, 'Product 171', 'img/product.png', 'This is a test product', 30117, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(176, 'Product 172', 'img/product.png', 'This is a test product', 72075, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(177, 'Product 173', 'img/product.png', 'This is a test product', 82936, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(178, 'Product 174', 'img/product.png', 'This is a test product', 122713, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(179, 'Product 175', 'img/product.png', 'This is a test product', 16893, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(180, 'Product 176', 'img/product.png', 'This is a test product', 149468, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(181, 'Product 177', 'img/product.png', 'This is a test product', 13117, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(182, 'Product 178', 'img/product.png', 'This is a test product', 98260, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(183, 'Product 179', 'img/product.png', 'This is a test product', 43253, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(184, 'Product 180', 'img/product.png', 'This is a test product', 134560, 3, '2014-06-21 23:09:36', 'product', 'Homes', 'Lisbon'),
(185, 'Product 181', 'img/product.png', 'This is a test product', 105949, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(186, 'Product 182', 'img/product.png', 'This is a test product', 21573, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(187, 'Product 183', 'img/product.png', 'This is a test product', 40275, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(188, 'Product 184', 'img/product.png', 'This is a test product', 83102, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(189, 'Product 185', 'img/product.png', 'This is a test product', 13082, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(190, 'Product 186', 'img/product.png', 'This is a test product', 65379, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(191, 'Product 187', 'img/product.png', 'This is a test product', 115250, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(192, 'Product 188', 'img/product.png', 'This is a test product', 143499, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(193, 'Product 189', 'img/product.png', 'This is a test product', 85798, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(194, 'Product 190', 'img/product.png', 'This is a test product', 9059, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(195, 'Product 191', 'img/product.png', 'This is a test product', 20855, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(196, 'Product 192', 'img/product.png', 'This is a test product', 7708, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(197, 'Product 193', 'img/product.png', 'This is a test product', 104914, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(198, 'Product 194', 'img/product.png', 'This is a test product', 117466, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(199, 'Product 195', 'img/product.png', 'This is a test product', 101576, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(200, 'Product 196', 'img/product.png', 'This is a test product', 86270, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(201, 'Product 197', 'img/product.png', 'This is a test product', 42149, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(202, 'Product 198', 'img/product.png', 'This is a test product', 41570, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(203, 'Product 199', 'img/product.png', 'This is a test product', 81915, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(204, 'Product 200', 'img/product.png', 'This is a test product', 118745, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(205, 'Product 201', 'img/product.png', 'This is a test product', 122199, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(206, 'Product 202', 'img/product.png', 'This is a test product', 145176, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(207, 'Product 203', 'img/product.png', 'This is a test product', 43589, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(208, 'Product 204', 'img/product.png', 'This is a test product', 66694, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(209, 'Product 205', 'img/product.png', 'This is a test product', 78393, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(210, 'Product 206', 'img/product.png', 'This is a test product', 64005, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(211, 'Product 207', 'img/product.png', 'This is a test product', 122736, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(212, 'Product 208', 'img/product.png', 'This is a test product', 101048, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(213, 'Product 209', 'img/product.png', 'This is a test product', 137750, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(214, 'Product 210', 'img/product.png', 'This is a test product', 23895, 3, '2014-06-21 23:09:49', 'product', 'Vehicles', 'Lisbon'),
(215, 'Product 211', 'img/product.png', 'This is a test product', 9845, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(216, 'Product 212', 'img/product.png', 'This is a test product', 130815, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(217, 'Product 213', 'img/product.png', 'This is a test product', 34818, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(218, 'Product 214', 'img/product.png', 'This is a test product', 28281, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(219, 'Product 215', 'img/product.png', 'This is a test product', 61235, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(220, 'Product 216', 'img/product.png', 'This is a test product', 106470, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(221, 'Product 217', 'img/product.png', 'This is a test product', 82122, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(222, 'Product 218', 'img/product.png', 'This is a test product', 38435, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(223, 'Product 219', 'img/product.png', 'This is a test product', 71543, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(224, 'Product 220', 'img/product.png', 'This is a test product', 3615, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(225, 'Product 221', 'img/product.png', 'This is a test product', 9939, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(226, 'Product 222', 'img/product.png', 'This is a test product', 33161, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(227, 'Product 223', 'img/product.png', 'This is a test product', 133657, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(228, 'Product 224', 'img/product.png', 'This is a test product', 107477, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(229, 'Product 225', 'img/product.png', 'This is a test product', 113443, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(230, 'Product 226', 'img/product.png', 'This is a test product', 34424, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(231, 'Product 227', 'img/product.png', 'This is a test product', 106795, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(232, 'Product 228', 'img/product.png', 'This is a test product', 37076, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(233, 'Product 229', 'img/product.png', 'This is a test product', 44980, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(234, 'Product 230', 'img/product.png', 'This is a test product', 66442, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(235, 'Product 231', 'img/product.png', 'This is a test product', 44088, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(236, 'Product 232', 'img/product.png', 'This is a test product', 34, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(237, 'Product 233', 'img/product.png', 'This is a test product', 6242, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(238, 'Product 234', 'img/product.png', 'This is a test product', 97996, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(239, 'Product 235', 'img/product.png', 'This is a test product', 52881, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(240, 'Product 236', 'img/product.png', 'This is a test product', 51054, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(241, 'Product 237', 'img/product.png', 'This is a test product', 42284, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(242, 'Product 238', 'img/product.png', 'This is a test product', 124435, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(243, 'Product 239', 'img/product.png', 'This is a test product', 41071, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(244, 'Product 240', 'img/product.png', 'This is a test product', 91275, 3, '2014-06-21 23:10:00', 'product', 'Technology', 'Lisbon'),
(245, 'Product 241', 'img/product.png', 'This is a test product', 55378, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(246, 'Product 242', 'img/product.png', 'This is a test product', 21513, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(247, 'Product 243', 'img/product.png', 'This is a test product', 52641, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(248, 'Product 244', 'img/product.png', 'This is a test product', 49477, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(249, 'Product 245', 'img/product.png', 'This is a test product', 121856, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(250, 'Product 246', 'img/product.png', 'This is a test product', 73373, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(251, 'Product 247', 'img/product.png', 'This is a test product', 70784, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(252, 'Product 248', 'img/product.png', 'This is a test product', 5063, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(253, 'Product 249', 'img/product.png', 'This is a test product', 110703, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(254, 'Product 250', 'img/product.png', 'This is a test product', 486, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(255, 'Product 251', 'img/product.png', 'This is a test product', 14992, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(256, 'Product 252', 'img/product.png', 'This is a test product', 50588, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(257, 'Product 253', 'img/product.png', 'This is a test product', 85745, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(258, 'Product 254', 'img/product.png', 'This is a test product', 54630, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(259, 'Product 255', 'img/product.png', 'This is a test product', 139148, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(260, 'Product 256', 'img/product.png', 'This is a test product', 68489, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(261, 'Product 257', 'img/product.png', 'This is a test product', 134758, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(262, 'Product 258', 'img/product.png', 'This is a test product', 111279, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(263, 'Product 259', 'img/product.png', 'This is a test product', 67908, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(264, 'Product 260', 'img/product.png', 'This is a test product', 4606, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(265, 'Product 261', 'img/product.png', 'This is a test product', 98278, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(266, 'Product 262', 'img/product.png', 'This is a test product', 41545, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(267, 'Product 263', 'img/product.png', 'This is a test product', 13412, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(268, 'Product 264', 'img/product.png', 'This is a test product', 19405, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(269, 'Product 265', 'img/product.png', 'This is a test product', 82597, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(270, 'Product 266', 'img/product.png', 'This is a test product', 14622, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(271, 'Product 267', 'img/product.png', 'This is a test product', 21728, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(272, 'Product 268', 'img/product.png', 'This is a test product', 99964, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(273, 'Product 269', 'img/product.png', 'This is a test product', 139734, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(274, 'Product 270', 'img/product.png', 'This is a test product', 22573, 3, '2014-06-21 23:10:11', 'product', 'Furniture', 'Lisbon'),
(275, 'Product 271', 'img/product.png', 'This is a test product', 36877, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(276, 'Product 272', 'img/product.png', 'This is a test product', 75782, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(277, 'Product 273', 'img/product.png', 'This is a test product', 80697, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(278, 'Product 274', 'img/product.png', 'This is a test product', 32364, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(279, 'Product 275', 'img/product.png', 'This is a test product', 105352, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(280, 'Product 276', 'img/product.png', 'This is a test product', 76975, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(281, 'Product 277', 'img/product.png', 'This is a test product', 68874, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(282, 'Product 278', 'img/product.png', 'This is a test product', 135452, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(283, 'Product 279', 'img/product.png', 'This is a test product', 2565, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(284, 'Product 280', 'img/product.png', 'This is a test product', 25921, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(285, 'Product 281', 'img/product.png', 'This is a test product', 86858, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(286, 'Product 282', 'img/product.png', 'This is a test product', 136562, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(287, 'Product 283', 'img/product.png', 'This is a test product', 11714, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(288, 'Product 284', 'img/product.png', 'This is a test product', 110635, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(289, 'Product 285', 'img/product.png', 'This is a test product', 105394, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(290, 'Product 286', 'img/product.png', 'This is a test product', 103289, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(291, 'Product 287', 'img/product.png', 'This is a test product', 33277, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(292, 'Product 288', 'img/product.png', 'This is a test product', 15924, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(293, 'Product 289', 'img/product.png', 'This is a test product', 121935, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(294, 'Product 290', 'img/product.png', 'This is a test product', 3780, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(295, 'Product 291', 'img/product.png', 'This is a test product', 124174, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(296, 'Product 292', 'img/product.png', 'This is a test product', 14204, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(297, 'Product 293', 'img/product.png', 'This is a test product', 145393, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(298, 'Product 294', 'img/product.png', 'This is a test product', 38325, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(299, 'Product 295', 'img/product.png', 'This is a test product', 67787, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(300, 'Product 296', 'img/product.png', 'This is a test product', 63071, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(301, 'Product 297', 'img/product.png', 'This is a test product', 78361, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(302, 'Product 298', 'img/product.png', 'This is a test product', 9519, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(303, 'Product 299', 'img/product.png', 'This is a test product', 138816, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(304, 'Product 300', 'img/product.png', 'This is a test product', 43145, 3, '2014-06-21 23:10:22', 'product', 'Phones', 'Lisbon'),
(305, 'Product 301', 'img/product.png', 'This is a test product', 29624, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(306, 'Product 302', 'img/product.png', 'This is a test product', 42650, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(307, 'Product 303', 'img/product.png', 'This is a test product', 125234, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(308, 'Product 304', 'img/product.png', 'This is a test product', 57582, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(309, 'Product 305', 'img/product.png', 'This is a test product', 99103, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(310, 'Product 306', 'img/product.png', 'This is a test product', 44706, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(311, 'Product 307', 'img/product.png', 'This is a test product', 142959, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(312, 'Product 308', 'img/product.png', 'This is a test product', 149281, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(313, 'Product 309', 'img/product.png', 'This is a test product', 142630, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(314, 'Product 310', 'img/product.png', 'This is a test product', 105779, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(315, 'Product 311', 'img/product.png', 'This is a test product', 115457, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(316, 'Product 312', 'img/product.png', 'This is a test product', 89746, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(317, 'Product 313', 'img/product.png', 'This is a test product', 142571, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(318, 'Product 314', 'img/product.png', 'This is a test product', 31305, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(319, 'Product 315', 'img/product.png', 'This is a test product', 142300, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(320, 'Product 316', 'img/product.png', 'This is a test product', 74889, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(321, 'Product 317', 'img/product.png', 'This is a test product', 12419, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(322, 'Product 318', 'img/product.png', 'This is a test product', 72802, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(323, 'Product 319', 'img/product.png', 'This is a test product', 89095, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(324, 'Product 320', 'img/product.png', 'This is a test product', 49637, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(325, 'Product 321', 'img/product.png', 'This is a test product', 41829, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(326, 'Product 322', 'img/product.png', 'This is a test product', 124442, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(327, 'Product 323', 'img/product.png', 'This is a test product', 30132, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(328, 'Product 324', 'img/product.png', 'This is a test product', 149474, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(329, 'Product 325', 'img/product.png', 'This is a test product', 127904, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(330, 'Product 326', 'img/product.png', 'This is a test product', 31081, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(331, 'Product 327', 'img/product.png', 'This is a test product', 24271, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(332, 'Product 328', 'img/product.png', 'This is a test product', 145334, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(333, 'Product 329', 'img/product.png', 'This is a test product', 9424, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(334, 'Product 330', 'img/product.png', 'This is a test product', 137412, 3, '2014-06-21 23:10:42', 'product', 'Jobs', 'Lisbon'),
(335, 'Product 331', 'img/product.png', 'This is a test product', 143994, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(336, 'Product 332', 'img/product.png', 'This is a test product', 128868, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(337, 'Product 333', 'img/product.png', 'This is a test product', 1966, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(338, 'Product 334', 'img/product.png', 'This is a test product', 4123, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(339, 'Product 335', 'img/product.png', 'This is a test product', 105427, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(340, 'Product 336', 'img/product.png', 'This is a test product', 10264, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(341, 'Product 337', 'img/product.png', 'This is a test product', 10996, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(342, 'Product 338', 'img/product.png', 'This is a test product', 51658, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(343, 'Product 339', 'img/product.png', 'This is a test product', 109889, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(344, 'Product 340', 'img/product.png', 'This is a test product', 34107, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(345, 'Product 341', 'img/product.png', 'This is a test product', 99789, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(346, 'Product 342', 'img/product.png', 'This is a test product', 13973, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(347, 'Product 343', 'img/product.png', 'This is a test product', 18129, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(348, 'Product 344', 'img/product.png', 'This is a test product', 131592, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(349, 'Product 345', 'img/product.png', 'This is a test product', 78818, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(350, 'Product 346', 'img/product.png', 'This is a test product', 85022, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(351, 'Product 347', 'img/product.png', 'This is a test product', 82980, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(352, 'Product 348', 'img/product.png', 'This is a test product', 20078, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(353, 'Product 349', 'img/product.png', 'This is a test product', 144895, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(354, 'Product 350', 'img/product.png', 'This is a test product', 3330, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(355, 'Product 351', 'img/product.png', 'This is a test product', 126684, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(356, 'Product 352', 'img/product.png', 'This is a test product', 109511, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(357, 'Product 353', 'img/product.png', 'This is a test product', 131053, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(358, 'Product 354', 'img/product.png', 'This is a test product', 4846, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(359, 'Product 355', 'img/product.png', 'This is a test product', 83129, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(360, 'Product 356', 'img/product.png', 'This is a test product', 72460, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(361, 'Product 357', 'img/product.png', 'This is a test product', 116861, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(362, 'Product 358', 'img/product.png', 'This is a test product', 131833, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(363, 'Product 359', 'img/product.png', 'This is a test product', 106607, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon'),
(364, 'Product 360', 'img/product.png', 'This is a test product', 87535, 3, '2014-06-21 23:10:50', 'product', 'Other', 'Lisbon');
-- --------------------------------------------------------
--
-- Table structure for table `rating`
--
CREATE TABLE IF NOT EXISTS `rating` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rater` tinyint(1) NOT NULL COMMENT 'The user ID that is rating',
`rated` tinyint(1) NOT NULL COMMENT 'The user ID that is being rated',
`rating` tinyint(3) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
/*!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 */;