-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate_project.sql
More file actions
19 lines (17 loc) · 948 Bytes
/
Copy pathupdate_project.sql
File metadata and controls
19 lines (17 loc) · 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
-- Update proyek dengan ID 1
UPDATE projects
SET
title = 'E-Learning Platform Pro',
description = 'Platform e-learning yang telah ditingkatkan dengan fitur kelas virtual yang lebih interaktif, quiz online dengan analisis hasil yang detail, dan dashboard kemajuan siswa yang komprehensif.',
repository_url = 'https://github.com/yourusername/elearning-platform-pro',
demo_url = 'https://elearning-pro-demo.example.com',
technologies = '["Laravel","PHP","MySQL","JavaScript","Vue.js","Redis"]'
WHERE id = 1;
-- Update proyek dengan ID 2
UPDATE projects
SET
title = 'Marketplace App Premium',
description = 'Versi premium dari aplikasi marketplace dengan sistem pembayaran yang lebih aman, fitur chat real-time, sistem review terverifikasi, dan antarmuka pengguna yang lebih intuitif.',
technologies = '["Laravel","PHP","MySQL","Vue.js","Redis","WebSockets"]'
WHERE id = 2;
-- Update proyek lainnya sesuai kebutuhan