-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopulating.sql
More file actions
23 lines (16 loc) · 770 Bytes
/
populating.sql
File metadata and controls
23 lines (16 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
INSERT INTO widgetzone (idWidgetZone, nomWidgetZone, currentWidget)
VALUES (1, "Sound", 1);
INSERT INTO widgetzone (idWidgetZone, nomWidgetZone, currentWidget)
VALUES (2, "Screen", 2);
INSERT INTO widget (idWidget, nomWidget, idWidgetZone, active)
VALUES (1, "music", 1, true);
INSERT INTO widget (idWidget, nomWidget, idWidgetZone, active)
VALUES (2, "youtubevideo", 2, true);
INSERT INTO widget (idWidget, nomWidget, idWidgetZone, active)
VALUES (3, "videos", 2, true);
INSERT INTO widget (idWidget, nomWidget, idWidgetZone, active)
VALUES (4, "youtubeaudio", 1, true);
INSERT INTO widget (idWidget, nomWidget, idWidgetZone, active)
VALUES (5, "pictures", 2, false);
INSERT INTO widget (idWidget, nomWidget, idWidgetZone, active)
VALUES (6, "meteo", 2, false);