-
Notifications
You must be signed in to change notification settings - Fork 0
/
ideapool (15).sql
431 lines (366 loc) · 21.3 KB
/
ideapool (15).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
-- phpMyAdmin SQL Dump
-- version 4.0.4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jun 09, 2016 at 05:01 AM
-- Server version: 5.6.12-log
-- PHP Version: 5.4.12
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: `ideapool`
--
CREATE DATABASE IF NOT EXISTS `ideapool` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
USE `ideapool`;
-- --------------------------------------------------------
--
-- Table structure for table `categories`
--
CREATE TABLE IF NOT EXISTS `categories` (
`catId` varchar(10) NOT NULL,
`name` varchar(250) NOT NULL,
`image` text NOT NULL,
PRIMARY KEY (`catId`),
UNIQUE KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `categories`
--
INSERT INTO `categories` (`catId`, `name`, `image`) VALUES
('cat0001', 'Academic', 'images/math.png'),
('cat0002', 'Student Affairs', 'images/academic.png'),
('cat0003', 'Sports and Societies', 'images/sports.png'),
('cat0004', 'External', 'images/arts.png');
-- --------------------------------------------------------
--
-- Table structure for table `comment`
--
CREATE TABLE IF NOT EXISTS `comment` (
`commentId` char(5) NOT NULL,
`submissionId` char(6) NOT NULL,
`userId` int(4) NOT NULL,
`description` varchar(150) NOT NULL,
`date` datetime NOT NULL,
`views` int(11) NOT NULL,
`commentType` varchar(50) NOT NULL,
`monthOf` int(11) NOT NULL DEFAULT '6',
PRIMARY KEY (`commentId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `comment`
--
INSERT INTO `comment` (`commentId`, `submissionId`, `userId`, `description`, `date`, `views`, `commentType`, `monthOf`) VALUES
('C_1', 'SUB_1', 1, 'True. ', '2016-04-21 16:13:55', 0, 'Comment', 0),
('C_10', 'SUB_1', 28, 'i agree', '2016-04-22 13:01:38', 0, 'Comment', 0),
('C_11', 'SUB_10', 25, 'hmm', '2016-04-30 17:34:10', 0, 'Comment', 0),
('C_12', 'SUB_6', 25, 'helloo', '2016-05-16 14:47:21', 0, 'Improvement', 0),
('C_13', 'SUB_9', 28, 'add this', '2016-05-17 01:13:03', 0, 'Improvement', 0),
('C_14', 'SUB_9', 25, 'dfdf', '2016-05-17 13:02:33', 0, 'Comment', 0),
('C_15', 'SUB_9', 25, 'mkm', '2016-05-17 13:10:06', 0, 'Comment', 0),
('C_16', 'SUB_8', 1, 'jjhjhhj', '2016-05-17 14:21:02', 0, 'Improvement', 0),
('C_17', 'SUB_9', 1, 'uguu', '2016-05-17 14:24:45', 0, 'Comment', 0),
('C_18', 'SUB_9', 1, 'jjjj', '2016-05-17 14:24:57', 0, 'Comment', 0),
('C_19', 'SUB_9', 1, 'good', '2016-05-17 14:36:03', 0, 'Comment', 0),
('C_2', 'SUB_6', 28, 'If we could suggest a reading room in the room on the 7th floor.', '2016-04-21 16:28:09', 0, 'Improvement', 0),
('C_20', 'SUB_14', 1, 'good', '2016-06-08 19:19:51', 0, 'Comment', 6),
('C_21', 'SUB_14', 1, 'fair', '2016-06-08 19:20:21', 0, 'Comment', 6),
('C_22', 'SUB_8', 28, 'Yes can we request for ebooks. That will be much easier', '2016-06-09 08:46:48', 0, 'Improvement', 6),
('C_23', 'SUB_8', 1, 'good', '2016-06-09 09:12:54', 0, 'Comment', 6),
('C_3', 'SUB_6', 1, 'good idea', '2016-04-21 16:33:21', 0, 'Comment', 0),
('C_4', 'SUB_6', 28, 'yes yes', '2016-04-21 16:37:26', 0, 'Comment', 0),
('C_5', 'SUB_6', 3, 'i agree', '2016-04-21 16:40:51', 0, 'Comment', 0),
('C_6', 'SUB_7', 3, 'i suggest online module documents and assignments for english language.', '2016-04-21 16:42:00', 0, 'Improvement', 0),
('C_7', 'SUB_8', 3, 'many books from the library are already borrowed', '2016-04-21 16:42:39', 0, 'Comment', 0),
('C_8', 'SUB_1', 3, 'good thing we dont come in vehicles', '2016-04-21 16:43:05', 0, 'Comment', 0),
('C_9', 'SUB_1', 28, 'true', '2016-04-22 12:52:04', 0, 'Improvement', 0);
-- --------------------------------------------------------
--
-- Table structure for table `department`
--
CREATE TABLE IF NOT EXISTS `department` (
`depId` varchar(10) NOT NULL,
`facId` varchar(10) NOT NULL,
`depName` varchar(250) NOT NULL,
`depImg` text NOT NULL,
PRIMARY KEY (`depId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `department`
--
INSERT INTO `department` (`depId`, `facId`, `depName`, `depImg`) VALUES
('dep0001', 'fac0001', 'Department of Bussiness', 'images/1.png'),
('dep0002', 'fac0001', 'Department of Accountancy', 'images/2.png'),
('dep0003', 'fac0002', 'Department of Civil Engineering', 'images/3.png'),
('dep0004', 'fac0002', 'Department of Electrical Engineering', 'images/4.png'),
('dep0005', 'fac0003', 'Department of Law', 'images/5.png'),
('dep0006', 'fac0003', 'Department of Logic', 'images/6.png'),
('dep0007', 'fac0004', 'Department of Software Engineering', 'images/7.png');
-- --------------------------------------------------------
--
-- Table structure for table `faculty`
--
CREATE TABLE IF NOT EXISTS `faculty` (
`facId` varchar(10) NOT NULL,
`facName` varchar(250) NOT NULL,
`facImg` text NOT NULL,
PRIMARY KEY (`facId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `faculty`
--
INSERT INTO `faculty` (`facId`, `facName`, `facImg`) VALUES
('fac0001', 'Faculty of Management', 'images/history.png'),
('fac0002', 'Faculty of Engineering', 'images/hhh.png'),
('fac0003', 'Faculty of Arts', 'images/math.png'),
('fac0004', 'Faculty of Computing', 'images/physics.png');
-- --------------------------------------------------------
--
-- Table structure for table `games`
--
CREATE TABLE IF NOT EXISTS `games` (
`ID` int(11) NOT NULL,
`Availability` int(11) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `games`
--
INSERT INTO `games` (`ID`, `Availability`) VALUES
(1, 1),
(2, 0),
(3, 1),
(4, 0),
(5, 0),
(6, 0);
-- --------------------------------------------------------
--
-- Table structure for table `idea`
--
CREATE TABLE IF NOT EXISTS `idea` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`title` varchar(100) NOT NULL,
`description` varchar(1000) NOT NULL,
`date` date NOT NULL,
`ownerid` int(100) NOT NULL,
`category` varchar(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `idea`
--
INSERT INTO `idea` (`id`, `title`, `description`, `date`, `ownerid`, `category`) VALUES
(1, 'car park should be extended', 'car park should be extended .because there are no enought space to park vehicles', '2016-03-19', 1, 'SERVICES');
-- --------------------------------------------------------
--
-- Table structure for table `improvements`
--
CREATE TABLE IF NOT EXISTS `improvements` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`description` varchar(100) NOT NULL,
`date` date NOT NULL,
`time` time NOT NULL,
`ideaid` int(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `improvements`
--
INSERT INTO `improvements` (`id`, `description`, `date`, `time`, `ideaid`) VALUES
(1, 'k but more ..', '2016-03-20', '12:31:34', 1);
-- --------------------------------------------------------
--
-- Table structure for table `login`
--
CREATE TABLE IF NOT EXISTS `login` (
`Logid` int(11) NOT NULL AUTO_INCREMENT,
`userid` int(11) NOT NULL,
`username` varchar(45) NOT NULL,
`password` varchar(45) NOT NULL,
PRIMARY KEY (`Logid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
--
-- Dumping data for table `login`
--
INSERT INTO `login` (`Logid`, `userid`, `username`, `password`) VALUES
(1, 1, 'root', 'root'),
(2, 2, 'pdm', 'pdm');
-- --------------------------------------------------------
--
-- Table structure for table `post`
--
CREATE TABLE IF NOT EXISTS `post` (
`postId` varchar(10) NOT NULL,
`userId` int(11) NOT NULL,
`dateTime` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
`faculty` varchar(250) NOT NULL,
`department` varchar(250) NOT NULL,
`category` varchar(100) NOT NULL,
`title` varchar(300) NOT NULL,
`content` varchar(1000) NOT NULL,
`views` int(100) NOT NULL DEFAULT '0',
`date` date NOT NULL DEFAULT '2016-04-14',
`files` varchar(100) NOT NULL,
`monthOf` int(11) NOT NULL,
PRIMARY KEY (`postId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `post`
--
INSERT INTO `post` (`postId`, `userId`, `dateTime`, `faculty`, `department`, `category`, `title`, `content`, `views`, `date`, `files`, `monthOf`) VALUES
('SUB_1', 28, '2016-04-21 16:06:55', 'Faculty of Computing', 'Department of Software Engineering', 'External', 'The car park should be extended', 'There is no space in the car park in the morning to park vehicles since the upper park is also reserved for guests.', 1, '2016-04-21', 'images/10995146_1618831068353288_175800297_n.jpg', 0),
('SUB_2', 28, '2016-04-21 16:09:44', 'Faculty of Engineering', 'Department of Electrical Engineering', 'Academic', 'Provide experiment labs for electrical engineering', 'Unable to perform experiments which is a huge part of our degree.', 0, '2016-04-21', 'images/boys1.png', 0),
('SUB_3', 28, '2016-04-21 16:10:46', 'Faculty of Engineering', 'Department of Civil Engineering', 'Academic', 'No appliances to do practicals', 'All appliances are not in good condition', 0, '2016-04-21', 'images/', 0),
('SUB_4', 28, '2016-04-21 16:12:05', 'Faculty of Management', 'Department of Bussiness', 'Sports and Societies', 'Requirement of a business club', 'Business students need to interact more often and share knowledge about their business backgrounds via a business club.', 0, '2016-04-21', 'images/', 0),
('SUB_5', 28, '2016-04-21 16:13:10', 'Faculty of Engineering', 'Department of Electrical Engineering', 'External', 'There is no space in the canteen for all the students.', 'At the interval hour the canteen fills with student their is no space for all the students to fit in.', 0, '2016-04-21', 'images/', 0),
('SUB_6', 1, '2016-04-21 16:17:59', 'Faculty of Computing', 'Department of Software Engineering', 'Academic', 'No space for the students to study', 'There is no space in any of the reading rooms for studying purposes due to the large amount of students. I request for a new reading room.', 6, '2016-04-21', 'images/', 0),
('SUB_7', 1, '2016-04-21 16:19:12', 'Faculty of Computing', 'Department of Software Engineering', 'Academic', 'English subject should be brought back to all four years', 'Most of the students struggle with english and business english. We need help', 11, '2016-04-21', 'images/The-ground-floor-of-the-proposed-new-Town-House-building-at-Kingston-University-London.jpg', 0),
('SUB_8', 1, '2016-04-21 16:20:55', 'Faculty of Computing', 'Department of Software Engineering', 'Academic', 'No textbooks for this semester - 3rd year IT student', 'Reference books are also not available in the library. Lack of books for reference.', 30, '2016-04-21', 'images/', 0),
('SUB_13', 1, '2016-06-04 19:12:58', 'Faculty of Computing', 'Department of Software Engineering', 'Sports and Societies', 'testtttttttttttt', 'test test test test', 2, '2016-06-04', 'images/', 0),
('SUB_10', 28, '2016-04-22 12:39:00', 'Faculty of Computing', 'Department of Software Engineering', 'Student Affairs', 'The managers are not very supportive', 'The managers are not very supportive', 1, '2016-04-22', 'images/', 0),
('SUB_12', 38, '2016-04-22 15:33:17', 'Faculty of Management', 'Department of Bussiness', 'Academic', 'this is test', 'fghmgjgjj,,hg', 0, '2016-04-22', 'images/1EMAim3uSfm29w35E23g_ldaYK5wTq6GjoEcXZfvg_pizza.jpg', 0),
('SUB_14', 1, '2016-06-08 18:15:15', 'Faculty of Computing', 'Department of Software Engineering', 'Academic', 'this is a test', 'test submission test1 2 3', 7, '2016-06-08', 'images/', 0),
('SUB_15', 1, '2016-06-08 19:21:36', 'Faculty of Management', 'Department of Software Engineering', 'Academic', 'gyudguyivsuioubsituzsio', 't6rvtsubtruvuiawi btrtavwttestybutuesbytrtuytyu ', 0, '2016-06-08', 'images/rsz_5_lamborghini_gallardo_car_wallpaper.jpg', 6);
-- --------------------------------------------------------
--
-- Table structure for table `register`
--
CREATE TABLE IF NOT EXISTS `register` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`fname` varchar(45) NOT NULL,
`lname` varchar(45) NOT NULL,
`address` varchar(45) NOT NULL,
`contact` int(11) NOT NULL,
`gender` varchar(45) NOT NULL,
`emil` varchar(45) NOT NULL,
`category` varchar(45) NOT NULL,
`universityID` varchar(45) NOT NULL,
`Image` varchar(45) NOT NULL,
`status` varchar(45) NOT NULL DEFAULT 'pending',
`username` varchar(45) NOT NULL,
`password` varchar(45) NOT NULL,
`reward` int(10) NOT NULL DEFAULT '0',
`reward2` int(10) NOT NULL DEFAULT '0',
`reward3` int(10) NOT NULL DEFAULT '0',
`rewardcount` int(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=39 ;
--
-- Dumping data for table `register`
--
INSERT INTO `register` (`id`, `fname`, `lname`, `address`, `contact`, `gender`, `emil`, `category`, `universityID`, `Image`, `status`, `username`, `password`, `reward`, `reward2`, `reward3`, `rewardcount`) VALUES
(1, 'Pawan', 'Gamage', 'Galle', 714020523, 'male', 'pawan@gmail.com', 'Student', '18889006', 'images/boy1.png', 'active', 'pawan@gmail.com', 'pdm', 1, 0, 0, 1),
(2, 'Sandakelum', 'Adikaram', 'Colombo', 776778987, 'male', 'sanda@gmail.com', 'Lecturer', '16778904', 'images/boy2.png', 'active', 'sanda', 'pdm', 0, 0, 0, 0),
(3, 'Chathra', 'Senevirathne', 'Gampaha', 771231212, 'female', 'chathra@gmail.com', 'Lecturer', '18887899', 'images/girl1.png', 'active', 'chathra', 'pdm', 0, 1, 0, 1),
(14, 'Kasun', 'Kodithuwakku', 'Tangalle', 773444555, 'male', 'kasun@gmail.com', 'staff', '18886677', 'images/boy4.png', 'blocked', '', 'ewmw928273', 0, 0, 0, 0),
(15, 'Panchali', 'Abheywardhana', 'Kandy', 773234445, 'female', 'panchali@gmail.com', 'Student', '18886787', 'images/girl2.png', 'active', 'panchali', 'pdm', 0, 0, 0, 0),
(16, 'robert', 'fernando', 'new york', 981235674, 'male', 'robert@gmail.com', 'Lecturere', '18765678', 'images/boy1.png', 'pending', 'robert@gmail.com', '', 0, 0, 0, 0),
(24, 'saman', 'kumara', 'jaffna batticloe', 987654321, 'female', 'sana@gmail.com', 'Lecturere', '123456789', 'images/boy2.png', 'pending', 'sana@gmail.com', '', 0, 0, 0, 0),
(25, 'Diluni', 'Amarasekara', 'Matara', 776878987, 'female', 'diluni@gmail.com', 'Operator', '18238849', 'images/girl4.png', 'active', 'diluni@gmail.com', 'pdm', 1, 0, 0, 1),
(27, 'Sandun', 'Adikarams', '167/1A,Makola,South', 987654321, 'male', 'dikaram@gmail.com', 'Lecturere', '18765678', 'images/boy1.png', 'pending', 'dikaram@gmail.com', '', 1, 0, 0, 1),
(28, 'Harshani', 'Yik', 'Kegalle', 77655678, 'female', 'harshani@gmail.com', 'Student', '18889005', 'images/girl3.png', 'active', 'harshani', 'pdm', 1, 0, 1, 2),
(36, 'saman', 'gamage', 'colombo', 714325678, 'male', 'hdfh@gmail.com', 'Student', '18768909', 'images/boy4.png', 'pending', 'hdfh@gmail.com', '', 3, 0, 0, 3),
(38, 'Diluni', 'Abewardhana', 'Colombo 7, weatern province', 768965432, 'male', 'diluni@g', 'Student', 'diluni', 'images/girl3.png', 'active', 'diluni@g', 'pdm', 1, 0, 0, 1);
-- --------------------------------------------------------
--
-- Table structure for table `reward`
--
CREATE TABLE IF NOT EXISTS `reward` (
`id` int(20) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`level` int(20) NOT NULL,
`img` varchar(255) NOT NULL,
`postcount` int(20) NOT NULL,
`type` varchar(255) NOT NULL,
`description` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
--
-- Dumping data for table `reward`
--
INSERT INTO `reward` (`id`, `name`, `level`, `img`, `postcount`, `type`, `description`) VALUES
(1, 'ideamaster', 1, 'images/reward1.png', 5, 'submission', 'ideamaster'),
(2, 'socialhelper', 2, 'images/reward2.png', 20, 'submission', ''),
(3, 'timesaver', 3, 'images/reward3.png', 50, 'submission', 'timesaver'),
(5, 'activevoter', 1, 'images/reward4.png', 5, 'vote', 'activevoter'),
(6, 'improver', 1, 'images/reward7.png', 3, 'improvement', 'improver');
-- --------------------------------------------------------
--
-- Table structure for table `votes`
--
CREATE TABLE IF NOT EXISTS `votes` (
`voteId` char(5) NOT NULL,
`voteType` varchar(30) NOT NULL,
`voteCategory` varchar(30) NOT NULL,
`userId` int(11) NOT NULL,
`submissionId` char(6) NOT NULL,
`improvementId` char(5) NOT NULL,
`submissionType` char(30) NOT NULL,
`date` datetime NOT NULL,
`weight` int(11) NOT NULL,
PRIMARY KEY (`voteId`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `votes`
--
INSERT INTO `votes` (`voteId`, `voteType`, `voteCategory`, `userId`, `submissionId`, `improvementId`, `submissionType`, `date`, `weight`) VALUES
('V_1', 'Upvote', '', 1, 'SUB_1', '', 'Submission', '2016-04-21 16:13:46', 70),
('V_10', 'Downvote', '', 25, 'SUB_6', '', 'Submission', '2016-05-08 16:04:02', 44),
('V_11', 'Upvote', 'Timeliness', 25, 'SUB_8', '', 'Submission', '2016-05-14 18:43:39', 100),
('V_12', 'Downvote', 'Accuracy', 25, 'SUB_8', '', 'Submission', '2016-05-14 18:43:39', 25),
('V_13', 'Upvote', 'Feasibility', 25, 'SUB_8', '', 'Submission', '2016-05-14 18:43:39', 50),
('V_14', 'Downvote', 'Accuracy', 25, 'SUB_6', '', 'Submission', '2016-05-16 14:46:05', 35),
('V_15', 'Upvote', 'Feasibility', 25, 'SUB_6', '', 'Submission', '2016-05-16 14:46:05', 89),
('V_16', 'Upvote', 'Timeliness', 25, 'SUB_6', '', 'Submission', '2016-05-16 14:46:05', 78),
('V_17', 'Downvote', 'Accuracy', 25, '', 'C_82', 'Improvement', '2016-05-15 20:01:02', 0),
('V_18', 'Upvote', 'Feasibility', 25, '', 'C_82', 'Improvement', '2016-05-15 20:01:02', 100),
('V_19', 'Upvote', 'Timeliness', 25, '', 'C_82', 'Improvement', '2016-05-15 20:01:02', 100),
('V_2', 'Upvote', '', 28, 'SUB_6', '', 'Submission', '2016-04-21 16:27:21', 65),
('V_20', 'Upvote', 'Accuracy', 25, '', 'C_6', 'Improvement', '2016-05-15 19:52:10', 61),
('V_21', 'Downvote', 'Feasibility', 25, '', 'C_6', 'Improvement', '2016-05-15 19:52:10', 32),
('V_22', 'Upvote', 'Timeliness', 25, '', 'C_6', 'Improvement', '2016-05-15 19:52:10', 96),
('V_23', 'Downvote', 'Accuracy', 25, '', 'C_55', 'Improvement', '2016-05-15 19:54:00', 10),
('V_24', 'Upvote', 'Feasibility', 25, '', 'C_55', 'Improvement', '2016-05-15 19:54:00', 90),
('V_25', 'Downvote', 'Timeliness', 25, '', 'C_55', 'Improvement', '2016-05-15 19:54:00', 17),
('V_26', 'Downvote', 'Accuracy', 25, '', 'C_81', 'Improvement', '2016-05-15 22:29:18', 11),
('V_27', 'Upvote', 'Feasibility', 25, '', 'C_81', 'Improvement', '2016-05-15 22:29:18', 61),
('V_28', 'Upvote', 'Timeliness', 25, '', 'C_81', 'Improvement', '2016-05-15 22:29:18', 88),
('V_29', 'Upvote', 'Accuracy', 25, '', 'C_84', 'Improvement', '2016-05-15 23:56:19', 64),
('V_3', 'Downvote', '', 28, 'SUB_7', '', 'Submission', '2016-04-21 16:39:46', 65),
('V_30', 'Upvote', 'Feasibility', 25, '', 'C_84', 'Improvement', '2016-05-15 23:56:19', 94),
('V_31', 'Upvote', 'Timeliness', 25, '', 'C_84', 'Improvement', '2016-05-15 23:56:19', 71),
('V_32', 'Downvote', 'Accuracy', 25, '', 'C_78', 'Improvement', '2016-05-16 00:38:00', 34),
('V_33', 'Upvote', 'Feasibility', 25, '', 'C_78', 'Improvement', '2016-05-16 00:38:00', 67),
('V_34', 'Upvote', 'Timeliness', 25, '', 'C_78', 'Improvement', '2016-05-16 00:38:00', 87),
('V_35', 'Downvote', 'Accuracy', 25, '', 'C_2', 'Improvement', '2016-05-16 14:47:12', 45),
('V_36', 'Downvote', 'Feasibility', 25, '', 'C_2', 'Improvement', '2016-05-16 14:47:12', 45),
('V_37', 'Downvote', 'Timeliness', 25, '', 'C_2', 'Improvement', '2016-05-16 14:47:12', 45),
('V_38', 'Downvote', 'Accuracy', 28, 'SUB_13', '', 'Submission', '2016-05-16 21:44:31', 25),
('V_39', 'Upvote', 'Feasibility', 28, 'SUB_13', '', 'Submission', '2016-05-16 21:44:31', 50),
('V_40', 'Upvote', 'Timeliness', 28, 'SUB_13', '', 'Submission', '2016-05-16 21:44:31', 50),
('V_41', 'Downvote', 'Accuracy', 28, 'SUB_9', '', 'Submission', '2016-05-17 00:51:51', 41),
('V_42', 'Upvote', 'Feasibility', 28, 'SUB_9', '', 'Submission', '2016-05-17 00:51:51', 75),
('V_43', 'Downvote', 'Timeliness', 28, 'SUB_9', '', 'Submission', '2016-05-17 00:51:51', 25),
('V_44', 'Downvote', 'Accuracy', 3, 'SUB_9', '', 'Submission', '2016-05-17 01:16:46', 39),
('V_45', 'Upvote', 'Feasibility', 3, 'SUB_9', '', 'Submission', '2016-05-17 01:16:46', 80),
('V_46', 'Upvote', 'Timeliness', 3, 'SUB_9', '', 'Submission', '2016-05-17 01:16:46', 75),
('V_47', 'Downvote', 'Accuracy', 25, 'SUB_9', '', 'Submission', '2016-05-17 13:58:05', 41),
('V_48', 'Upvote', 'Feasibility', 25, 'SUB_9', '', 'Submission', '2016-05-17 13:58:05', 86),
('V_49', 'Upvote', 'Timeliness', 25, 'SUB_9', '', 'Submission', '2016-05-17 13:58:05', 75),
('V_50', 'Downvote', 'Accuracy', 1, '', 'C_16', 'Improvement', '2016-06-08 17:27:08', 34),
('V_51', 'Upvote', 'Feasibility', 1, '', 'C_16', 'Improvement', '2016-06-08 17:27:08', 59),
('V_52', 'Upvote', 'Timeliness', 1, '', 'C_16', 'Improvement', '2016-06-08 17:27:08', 50),
('V_53', 'Downvote', 'Accuracy', 1, 'SUB_8', '', 'Submission', '2016-06-08 17:54:33', 46),
('V_54', 'Upvote', 'Feasibility', 1, 'SUB_8', '', 'Submission', '2016-06-08 17:54:33', 75),
('V_55', 'Upvote', 'Timeliness', 1, 'SUB_8', '', 'Submission', '2016-06-08 17:54:33', 63),
('V_6', 'Upvote', '', 3, 'SUB_6', '', 'Submission', '2016-04-21 16:40:45', 96),
('V_7', 'Upvote', '', 3, 'SUB_7', '', 'Submission', '2016-04-21 16:41:01', 13),
('V_8', 'Upvote', '', 3, 'SUB_8', '', 'Submission', '2016-04-21 16:42:13', 94),
('V_9', 'Upvote', '', 3, 'SUB_1', '', 'Submission', '2016-04-21 16:42:48', 95);
/*!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 */;