forked from vukihai/QLTT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
qltt-3.sql
586 lines (493 loc) · 23.3 KB
/
qltt-3.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
-- phpMyAdmin SQL Dump
-- version 4.6.6
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Jun 14, 2018 at 02:19 PM
-- Server version: 5.7.17-log
-- PHP Version: 5.6.30
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: `qltt`
--
-- --------------------------------------------------------
--
-- Table structure for table `lecturer`
--
CREATE TABLE `lecturer` (
`id` int(11) NOT NULL,
`name` varchar(40) NOT NULL,
`VNUmail` varchar(50) NOT NULL,
`gmail` varchar(50) NOT NULL,
`note` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `lecturer`
--
INSERT INTO `lecturer` (`id`, `name`, `VNUmail`, `gmail`, `note`) VALUES
(3, 'Lê Đình Thanh', '[email protected]', '[email protected]', 'noteLDT');
-- --------------------------------------------------------
--
-- Table structure for table `lecture_studentlist`
--
CREATE TABLE `lecture_studentlist` (
`id` int(11) NOT NULL,
`lectureID` int(11) NOT NULL,
`courseYear` int(4) NOT NULL,
`studentID` int(11) NOT NULL,
`submitedReport` int(11) NOT NULL,
`point` float NOT NULL,
`comment` text NOT NULL,
`semester` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `message`
--
CREATE TABLE `message` (
`id` int(11) NOT NULL,
`parentID` int(11) DEFAULT NULL,
`senderID` int(11) NOT NULL,
`receiverID` int(11) NOT NULL,
`subject` text NOT NULL,
`content` text NOT NULL,
`attachment` text NOT NULL,
`sendTime` datetime NOT NULL,
`seen` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `message`
--
INSERT INTO `message` (`id`, `parentID`, `senderID`, `receiverID`, `subject`, `content`, `attachment`, `sendTime`, `seen`) VALUES
(1, NULL, 2, 1, 'sub1 Subject tổng', 'Content1 thư đầu', 'att', '2018-03-31 00:00:00', 1),
(2, 1, 1, 2, 'sub2 thư trả lời cho 1', 'content2 trả lời 1', 'att2', '2018-04-25 10:46:21', 0),
(3, NULL, 1, 3, 'Báo cáo tuần 1', 'Nội dung báo cáo tuần 1, Em đã làm quen với công ty và đang làm dự án đầu tiên tại đây. Công việc toàn code web mệt vô cùng. Báo cáo em cũng không dài lắm mong thầy thông cảm, em không biết viết thầy ạ', 'filebaocao.docx', '2018-04-25 10:46:20', 0),
(4, 1, 2, 1, 'sub4 thử trả lời cho thư 2 ', 'content4 trả lời 2', 'att4', '2018-04-25 10:46:22', 0),
(5, NULL, 1, 3, 'Báo cáo tuần 2', 'content5 báo cáo tuần 2', 'att5BaoCao2.docx', '2018-06-17 17:24:25', 0),
(6, NULL, 4, 0, 'hello', 'c ty muốn sắp lịch phỏng vấn với e', '', '2018-06-13 13:55:49', 1),
(7, NULL, 1, 0, 'alo', 'abc', '', '2018-06-13 13:56:44', 1),
(8, NULL, 1, 4, '123', '123', '', '2018-06-13 14:02:31', 1),
(9, NULL, 1, 2, 'hello', 'adsdasdasdasd', '', '2018-06-13 21:29:14', 1);
-- --------------------------------------------------------
--
-- Table structure for table `notifications`
--
CREATE TABLE `notifications` (
`id` int(11) NOT NULL,
`receiverID` int(11) NOT NULL,
`senderID` int(11) NOT NULL,
`url` text NOT NULL,
`content` text NOT NULL,
`time` datetime NOT NULL,
`seen` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `notifications`
--
INSERT INTO `notifications` (`id`, `receiverID`, `senderID`, `url`, `content`, `time`, `seen`) VALUES
(1, 1, 2, '/baidang/1', 'bạn có 1 tin nhắn mới từ admin', '0000-00-00 00:00:00', 1),
(2, 1, 2, '/baidang/2', 'Thông báo mời phỏng vấn từ samsung', '0000-00-00 00:00:00', 1);
-- --------------------------------------------------------
--
-- Table structure for table `partner`
--
CREATE TABLE `partner` (
`id` int(11) NOT NULL,
`name` varchar(39) NOT NULL,
`contact` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `partner`
--
INSERT INTO `partner` (`id`, `name`, `contact`) VALUES
(2, 'Bầu Trời Xa Corporation', 'Bầu Trời Xa Studio, Cầu Giấy, Hà Nội'),
(4, 'SAMSUNG', 'Trung tâm Nghiên cứu và Phát triển điện thoại di động Samsung Việt Nam (SVMC)\r\n\r\nSố 1 Phạm Văn Bạch, Yên Hoà, Cầu Giấy, Hà Nội'),
(6, 'VNG', 'đâu đó trên trái đất'),
(7, 'ASUS VN', 'Việt Nam'),
(8, 'CHIN SU', 'tương ớt . Đượm vị cay, bùng vị ngon');
-- --------------------------------------------------------
--
-- Table structure for table `post`
--
CREATE TABLE `post` (
`id` int(11) NOT NULL,
`partnerID` int(11) NOT NULL,
`title` text NOT NULL,
`image` text NOT NULL,
`content` text NOT NULL,
`postTime` datetime NOT NULL,
`exp` datetime NOT NULL,
`priorityOrder` int(11) NOT NULL,
`semester` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `post`
--
INSERT INTO `post` (`id`, `partnerID`, `title`, `image`, `content`, `postTime`, `exp`, `priorityOrder`, `semester`) VALUES
(1, 2, 'Bầu Trời Xa tuyển hacker hack được nick facebook của vukihai, phần thường là 1000 đô la fa si sol mi......s', 'http://anhdep.pro/wp-content/uploads/2015/09/phong-canh-rung-nui-2.jpg', 'Bầu Trời Xa tuyển hacker', '2018-04-25 13:38:30', '2018-04-26 00:00:00', 0, 0),
(2, 4, 'Thực tập tại Samsung Electronics VietNam', 'http://anhdep.pro/wp-content/uploads/2015/09/phong-canh-rung-nui-2.jpg', 'Trong khuôn khổ hợp tác giữa Samsung Electronics Việt Nam và các trường Đại học/ Học viện lớn tại miền Bắc, SVMC Internship Program là chương trình thiết thực và ý nghĩa nhằm chuẩn bị hành trang trước khi ra trường cho các bạn sinh viên, cung cấp nền tảng tri thức và kĩ năng vững chắc cần có để trở thành một Nhân viên Lập trình tài năng theo tiêu chuẩn toàn cầu của Tập đoàn Samsung. Ngoài ra, sinh viên còn có cơ hội học hỏi và trải nghiệm môi trường làm việc năng động, chuyên nghiệp và hiện đại tại Trung tâm nghiên cứu và phát triển Điện thoại Di động lớn nhất Đông Nam Á của Samsung.\r\n\r\n Đặc biệt, khi kết thúc chương trình thực tập, sinh viên sẽ có cơ hội trở thành nhân viên chính thức của SVMC nếu vượt qua bài thi cuối kỳ thực tập.\r\n\r\n1. Thông tin chương trình thực tập kỳ hè năm 2018\r\n\r\n – Đối tượng xét tuyển: Sinh viên chính quy sẽ tốt nghiệp tháng12/2018 hoặc 06/2019 của các Trường Đại học/ Học viện sau:\r\n\r\nSTT Tên trường Khoa/Viện\r\n1 ĐH Bách khoa Hà Nội (HUST) Viện Công nghệ thông tin & Truyền thông, Viện Điện tử Viễn thông\r\n2 ĐH Công nghệ – ĐHQGHN (VNU-UET) Khoa Công nghệ thông tin, Khoa Điện tử viễn thông\r\n3 Học viện Bưu chính viễn thông (PTIT) Khoa Công nghệ thông tin I, Khoa viễn thông I\r\n4 ĐH Công nghiệp Hà Nội (HaUI) Khoa Công nghệ thông tin, Khoa Điện tử\r\n5 Học viện kĩ thuật quân sự (MTA) Khoa Công nghệ thông tin, Khoa Vô tuyến Điện tử\r\n6 Học viện kĩ thuật Mật mã (ACTVN) Khoa An toàn thông tin\r\n7 ĐH Giao thông Vận tải (UTC) Khoa Công nghệ thông tin, Khoa Điện – Điện tử\r\n8 ĐH Công nghệ thông tin &Truyền thông Thái Nguyên (ICTU) Khoa Công nghệ thông tin, Khoa Công nghệ điện tử và Truyền thông\r\n9 ĐH Thủy Lợi (TLU) Khoa Công nghệ thông tin\r\n10 ĐH Khoa học Tự nhiên – ĐHQGHN\r\n(VNU-HUS)\r\n\r\nKhoa Toán-Cơ-Tin học\r\n11 ĐH Xây dựng (NUCE) Khoa Công nghệ thông tin\r\n– Điều kiện xét tuyển\r\n\r\nĐiểm trung bình tích lũy tất cả các kỳ tính đến học kỳ gần nhất: CPA ≥ 2.0/4\r\nYêu thích lập trình phần mềm\r\nChưa được nhận học bổng STP, chưa từng tham dự SVMC Internship Program\r\n– Thời gian\r\n\r\n4 tuần gồm đào tạo và thực tập (từ tháng 6/2018 đến tháng 8/2018– 3 đợt thực tập)\r\n– Địa điểm\r\n\r\nTrung tâm Nghiên cứu và Phát triển điện thoại di động Samsung Việt Nam (SVMC)\r\n\r\nSố 1 Phạm Văn Bạch, Yên Hoà, Cầu Giấy, Hà Nội\r\n\r\n– Quyền lợi\r\n\r\nĐược đào tạo bài bản về: Thuật toán, C/C++/Java/Android,…\r\nĐược hướng dẫn, giảng dạy bởi các kỹ sư giàu kinh nghiệm và tận tình của SVMC\r\nĐược tham gia và trải nghiệm các mini-projects\r\nĐược cấp giấy chứng nhận thực tập tại SVMC\r\nCó cơ hội trở thành nhân viên chính thức của SVMC nếu vượt qua bài thi cuối kỳ thực tập\r\nĐược hỗ trợ 3,000,000 VNĐ/ sinh viên\r\n2. Quy trình xét tuyển\r\n\r\nTừ ngày 03/05-16/05: Đề cử sinh viên\r\nNgày 21-22/5 và 04-05/6: Phỏng vấn\r\nNgày 07/06: Thông báo kết quả\r\nTháng 6-8/2018: Thực tập tại SVMC\r\n3. Cách thức đề cử\r\n\r\nSinh viên đăng ký với Khoa/Viện, Khoa/Viện gửi Danh sách sinh viên đề cử tới SVMC trước 17:00 ngày 16 tháng 05 năm 2018\r\n 4. Liên hệ\r\n\r\nTên trường (viết tắt) Người phụ trách SĐT Email\r\nHUST, PTIT, HUS, NUCE Mr.HoàngTrọngTuấn 0912 406 001 [email protected]\r\nHAUI, UTC Ms. Đinh Thị Diệu Thảo 0888 990 085 [email protected]\r\nMTA, ACTVN Mr. Nguyễn Đức Giáp 0988 842 309 [email protected]\r\nUET, TLU Ms. Đào Thị Oanh 0983 034 455 [email protected]\r\nICTU, NUCE Mr. Nguyễn Ngọc Tú 0888 990 081 [email protected]\r\n 5. Lưu ý\r\n\r\nỨng viên từng thi trượt học bổng STP vẫn có cơ hội ứng tuyển chương trình thực tập.\r\nỨng viên không trúng tuyển thực tập vẫn có cơ hội thi tuyển nhân viên chính thức.', '2018-05-09 10:10:10', '2018-06-15 23:59:59', 0, 0),
(3, 2, 'tuyển gì đó', 'http://anhdep.pro/wp-content/uploads/2015/09/phong-canh-rung-nui-2.jpg', '1233', '2018-04-25 13:38:30', '2018-04-26 00:00:00', 0, 0),
(4, 2, 'Bầu Trời Xa Corporation tuyển lập trình viên công nghệ thông tin HTML, CSS, JS làm front-end cho dự án mới nhất của công ty: Web site chụp ảnh thuê', 'http://anhdep.pro/wp-content/uploads/2015/09/phong-canh-rung-nui-2.jpg', 'tuyển thôi', '2018-04-25 13:38:30', '2018-04-26 00:00:00', 1, 0),
(5, 2, 'Tuyển nhân viên bán hàng', 'http://anhdep.pro/wp-content/uploads/2015/09/phong-canh-rung-nui-2.jpg', 'tuyển////', '2018-04-25 13:38:30', '2018-04-26 00:00:00', 2, 0),
(6, 2, 'tuyển hacker hack nick facebook', 'http://anhdep.pro/wp-content/uploads/2015/09/phong-canh-rung-nui-2.jpg', 'tuyểnasdasd', '2018-04-25 13:38:30', '2018-04-26 00:00:00', 3, 0),
(8, 2, 'Bầu Trời Xa Corporation tuyển nhân viên chụp ảnh cảnh nghệ thuật để đăng lên mạng cho vui', 'http://anhdep.pro/wp-content/uploads/2015/09/phong-canh-rung-nui-2.jpg', 'tyển', '2018-04-25 13:38:30', '2018-04-26 00:00:00', 4, 0),
(9, 2, 'Bầu Trời Xa Corporation tuyển lập trình viên back-end cho dự án mới nhất của mình, Công ti của chúng tôi yêu cầu trình độ php hoặc là nodejs. Biết lập trình hướng đối tượng. Học tốt cấu trúc dữ liệu và giải thuật, khả năng tư duy xây dựng hướng api. Có 1-2 năm kinh nghiệm là một lợi thế', 'http://anhdep.pro/wp-content/uploads/2015/09/phong-canh-rung-nui-2.jpg', 'tuyểnadasdasdadsadg2222222', '2018-04-25 13:38:30', '2018-04-26 00:00:00', 5, 0);
-- --------------------------------------------------------
--
-- Table structure for table `reports`
--
CREATE TABLE `reports` (
`id` int(11) NOT NULL,
`lecturerID` int(11) NOT NULL,
`weekStart` date NOT NULL,
`studentID` int(11) NOT NULL,
`messageID` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `reports`
--
INSERT INTO `reports` (`id`, `lecturerID`, `weekStart`, `studentID`, `messageID`) VALUES
(1, 3, '2018-06-04', 1, 3),
(2, 3, '2018-06-11', 1, 5);
-- --------------------------------------------------------
--
-- Table structure for table `semester`
--
CREATE TABLE `semester` (
`id` int(10) NOT NULL,
`stage` int(11) NOT NULL,
`registerStart` datetime NOT NULL,
`startSeme` datetime NOT NULL,
`endSeme` datetime NOT NULL,
`active` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_vietnamese_ci;
--
-- Dumping data for table `semester`
--
INSERT INTO `semester` (`id`, `stage`, `registerStart`, `startSeme`, `endSeme`, `active`) VALUES
(1, 0, '2018-06-14 13:55:37', '2018-06-16 13:55:00', '2018-06-23 13:55:00', 0),
(2, 0, '2018-06-14 06:55:37', '2018-06-16 06:55:00', '2018-06-23 06:55:00', 1);
-- --------------------------------------------------------
--
-- Table structure for table `student`
--
CREATE TABLE `student` (
`id` int(11) NOT NULL,
`avatar` varchar(100) NOT NULL,
`personalEmail` varchar(50) NOT NULL,
`skype` varchar(50) NOT NULL,
`facebook` varchar(100) NOT NULL,
`phoneNumber` varchar(13) NOT NULL,
`staffPosition` varchar(100) NOT NULL,
`languages` varchar(100) NOT NULL,
`certificates` varchar(100) NOT NULL,
`experiences` varchar(100) NOT NULL,
`skills` varchar(100) NOT NULL,
`worked_companies` text NOT NULL,
`projects` text NOT NULL,
`hobbies` varchar(100) NOT NULL,
`interests` varchar(100) NOT NULL,
`note` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `student`
--
INSERT INTO `student` (`id`, `avatar`, `personalEmail`, `skype`, `facebook`, `phoneNumber`, `staffPosition`, `languages`, `certificates`, `experiences`, `skills`, `worked_companies`, `projects`, `hobbies`, `interests`, `note`) VALUES
(1, 'avatar link here ', '[email protected]', '@bautroixacf', 'fb.com/bautroixacf', '09127532193', 'staff position 2', 'vi-vn', 'rank cao thủ Liên quân', 'none', '', 'Bầu Trời Xa Corp', 'BTL web', 'playing instrument', 'music', '123'),
(5, '', 'pE', 'sk', 'fb', 'pN', 'sP', 'la', 'cer', 'exp', '\0', 'wC', 'pro', 'hb', 'inte', 'note');
-- --------------------------------------------------------
--
-- Table structure for table `stu_fixed_info`
--
CREATE TABLE `stu_fixed_info` (
`studentID` int(11) NOT NULL,
`msv` int(8) NOT NULL,
`class` varchar(8) NOT NULL,
`khoa` text NOT NULL,
`nganh` text NOT NULL,
`diachi` text NOT NULL,
`hoten` varchar(32) NOT NULL,
`ngaysinh` datetime NOT NULL,
`VNUmail` varchar(50) NOT NULL,
`diemTB` float NOT NULL,
`namTN` int(4) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `stu_fixed_info`
--
INSERT INTO `stu_fixed_info` (`studentID`, `msv`, `class`, `khoa`, `nganh`, `diachi`, `hoten`, `ngaysinh`, `VNUmail`, `diemTB`, `namTN`) VALUES
(1, 16020923, 'K61CD', 'Công Nghệ Thông Tin', 'Công Nghệ Thông Tin', 'Chợ Xanh', 'Phạm Ngọc Duy', '1998-10-12 13:00:00', '[email protected]', 3.25, 2020),
(5, 16020925, 'K61CD', 'Công Nghệ thông tin', 'CNTT', 'Nhà tui', 'Phạm Ngọc Duy 1998', '1998-10-12 13:00:00', '[email protected]', 2, 2020);
-- --------------------------------------------------------
--
-- Table structure for table `stu_follow`
--
CREATE TABLE `stu_follow` (
`id` int(11) NOT NULL,
`studentId` int(11) NOT NULL,
`postId` int(11) NOT NULL,
`status` int(1) NOT NULL,
`phongVanDate` datetime NOT NULL,
`finalSemeComment` text NOT NULL,
`semester` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `stu_follow`
--
INSERT INTO `stu_follow` (`id`, `studentId`, `postId`, `status`, `phongVanDate`, `finalSemeComment`, `semester`) VALUES
(1, 1, 1, 1, '0000-00-00 00:00:00', '', 0),
(2, 1, 1, 1, '0000-00-00 00:00:00', '', 0),
(3, 1, 1, 1, '0000-00-00 00:00:00', '1', 0),
(4, 1, 8, 1, '0000-00-00 00:00:00', '', 0),
(5, 1, 5, 1, '0000-00-00 00:00:00', '', 0),
(6, 1, 5, 1, '0000-00-00 00:00:00', '', 0),
(7, 1, 8, 1, '0000-00-00 00:00:00', '', 0),
(8, 1, 1, 1, '0000-00-00 00:00:00', '', 0),
(9, 1, 2, 1, '0000-00-00 00:00:00', '', 0),
(10, 1, 1, 1, '0000-00-00 00:00:00', '', 0),
(11, 1, 4, 1, '0000-00-00 00:00:00', '', 0),
(12, 1, 5, 1, '0000-00-00 00:00:00', '', 0),
(13, 1, 5, 1, '0000-00-00 00:00:00', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `tsudent_skill`
--
CREATE TABLE `tsudent_skill` (
`id` int(11) NOT NULL,
`studentID` int(11) NOT NULL,
`skillName` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `vnuaccount`
--
CREATE TABLE `vnuaccount` (
`vnuID` int(11) NOT NULL,
`username` varchar(32) NOT NULL,
`password` varchar(32) NOT NULL,
`fullName` varchar(50) NOT NULL,
`role` int(1) NOT NULL,
`lastLogin` int(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `vnuaccount`
--
INSERT INTO `vnuaccount` (`vnuID`, `username`, `password`, `fullName`, `role`, `lastLogin`) VALUES
(1, 'phamngocduy98', 'd9b1d7db4cd6e70935368a1efb10e377', 'Phạm Ngọc Duy', 0, 0),
(2, 'bautroixacorp', 'd9b1d7db4cd6e70935368a1efb10e377', 'Bầu Trời Xa Corporation', 2, 13142125),
(3, 'thanhld', 'd9b1d7db4cd6e70935368a1efb10e377', 'Lê Đình Thanh', 1, 13142125),
(4, 'samsung', 'd9b1d7db4cd6e70935368a1efb10e377', 'SAMSUNG', 2, 13142125),
(5, 'phamngocduy1998', 'd9b1d7db4cd6e70935368a1efb10e377', 'Phạm Ngọc Duy 1998', 0, 13142125),
(6, 'vng', 'd9b1d7db4cd6e70935368a1efb10e377', 'VNG', 2, 13142125),
(7, 'asus', 'd9b1d7db4cd6e70935368a1efb10e377', 'ASUS Việt Nam', 2, 13142125),
(8, 'chinsu', 'd9b1d7db4cd6e70935368a1efb10e377', 'CHIN SU FOOD :v', 2, 13142125),
(9, 'admin', 'd9b1d7db4cd6e70935368a1efb10e377', '', 3, 0);
--
-- Indexes for dumped tables
--
--
-- Indexes for table `lecturer`
--
ALTER TABLE `lecturer`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `lecture_studentlist`
--
ALTER TABLE `lecture_studentlist`
ADD PRIMARY KEY (`id`),
ADD KEY `lecture_studentList_fk1` (`studentID`),
ADD KEY `lecture_studentList_fk2` (`submitedReport`);
--
-- Indexes for table `message`
--
ALTER TABLE `message`
ADD PRIMARY KEY (`id`),
ADD KEY `message_fk0` (`parentID`);
--
-- Indexes for table `notifications`
--
ALTER TABLE `notifications`
ADD PRIMARY KEY (`id`),
ADD KEY `notifications_fk0` (`receiverID`);
--
-- Indexes for table `partner`
--
ALTER TABLE `partner`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `post`
--
ALTER TABLE `post`
ADD PRIMARY KEY (`id`),
ADD KEY `post_fk0` (`partnerID`);
--
-- Indexes for table `reports`
--
ALTER TABLE `reports`
ADD PRIMARY KEY (`id`),
ADD KEY `reports_fk0` (`lecturerID`),
ADD KEY `reports_fk1` (`studentID`),
ADD KEY `reports_fk2` (`messageID`);
--
-- Indexes for table `semester`
--
ALTER TABLE `semester`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `student`
--
ALTER TABLE `student`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `stu_fixed_info`
--
ALTER TABLE `stu_fixed_info`
ADD UNIQUE KEY `msv` (`msv`),
ADD KEY `stu_fixed_info_fk0` (`studentID`);
--
-- Indexes for table `stu_follow`
--
ALTER TABLE `stu_follow`
ADD PRIMARY KEY (`id`),
ADD KEY `stu_follow_fk0` (`studentId`),
ADD KEY `stu_follow_fk1` (`postId`);
--
-- Indexes for table `tsudent_skill`
--
ALTER TABLE `tsudent_skill`
ADD PRIMARY KEY (`id`),
ADD KEY `tsudent_skill_fk0` (`studentID`);
--
-- Indexes for table `vnuaccount`
--
ALTER TABLE `vnuaccount`
ADD PRIMARY KEY (`vnuID`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `lecturer`
--
ALTER TABLE `lecturer`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `message`
--
ALTER TABLE `message`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `notifications`
--
ALTER TABLE `notifications`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `partner`
--
ALTER TABLE `partner`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `post`
--
ALTER TABLE `post`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `reports`
--
ALTER TABLE `reports`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `semester`
--
ALTER TABLE `semester`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `student`
--
ALTER TABLE `student`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `stu_follow`
--
ALTER TABLE `stu_follow`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
--
-- AUTO_INCREMENT for table `tsudent_skill`
--
ALTER TABLE `tsudent_skill`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `vnuaccount`
--
ALTER TABLE `vnuaccount`
MODIFY `vnuID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `lecturer`
--
ALTER TABLE `lecturer`
ADD CONSTRAINT `lecturer_fk0` FOREIGN KEY (`id`) REFERENCES `vnuaccount` (`vnuID`);
--
-- Constraints for table `lecture_studentlist`
--
ALTER TABLE `lecture_studentlist`
ADD CONSTRAINT `lecture_studentList_fk1` FOREIGN KEY (`studentID`) REFERENCES `student` (`id`),
ADD CONSTRAINT `lecture_studentList_fk2` FOREIGN KEY (`submitedReport`) REFERENCES `reports` (`id`);
--
-- Constraints for table `message`
--
ALTER TABLE `message`
ADD CONSTRAINT `message_fk0` FOREIGN KEY (`parentID`) REFERENCES `message` (`id`);
--
-- Constraints for table `notifications`
--
ALTER TABLE `notifications`
ADD CONSTRAINT `notifications_fk0` FOREIGN KEY (`receiverID`) REFERENCES `student` (`id`);
--
-- Constraints for table `partner`
--
ALTER TABLE `partner`
ADD CONSTRAINT `partner_fk0` FOREIGN KEY (`id`) REFERENCES `vnuaccount` (`vnuID`),
ADD CONSTRAINT `partner_fk1` FOREIGN KEY (`id`) REFERENCES `vnuaccount` (`vnuID`);
--
-- Constraints for table `post`
--
ALTER TABLE `post`
ADD CONSTRAINT `post_fk0` FOREIGN KEY (`partnerID`) REFERENCES `partner` (`id`);
--
-- Constraints for table `reports`
--
ALTER TABLE `reports`
ADD CONSTRAINT `reports_fk0` FOREIGN KEY (`lecturerID`) REFERENCES `lecturer` (`id`),
ADD CONSTRAINT `reports_fk1` FOREIGN KEY (`studentID`) REFERENCES `student` (`id`),
ADD CONSTRAINT `reports_fk2` FOREIGN KEY (`messageID`) REFERENCES `message` (`id`);
--
-- Constraints for table `student`
--
ALTER TABLE `student`
ADD CONSTRAINT `student_fk0` FOREIGN KEY (`id`) REFERENCES `vnuaccount` (`vnuID`);
--
-- Constraints for table `stu_fixed_info`
--
ALTER TABLE `stu_fixed_info`
ADD CONSTRAINT `stu_fixed_info_fk0` FOREIGN KEY (`studentID`) REFERENCES `student` (`id`);
--
-- Constraints for table `stu_follow`
--
ALTER TABLE `stu_follow`
ADD CONSTRAINT `stu_follow_fk0` FOREIGN KEY (`studentId`) REFERENCES `student` (`id`),
ADD CONSTRAINT `stu_follow_fk1` FOREIGN KEY (`postId`) REFERENCES `post` (`id`);
--
-- Constraints for table `tsudent_skill`
--
ALTER TABLE `tsudent_skill`
ADD CONSTRAINT `tsudent_skill_fk0` FOREIGN KEY (`studentID`) REFERENCES `student` (`id`);
/*!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 */;