-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.sql
62 lines (58 loc) · 3.75 KB
/
data.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
INSERT INTO dish (name, co2)
VALUES ('spaghetti', 4.63);
INSERT INTO dish (name, co2)
VALUES ('schnitzel', 9.26);
INSERT INTO dish (name, co2)
VALUES ('pancake', 2.41);
INSERT INTO dish (name, co2)
VALUES ('cereals', 0.8);
INSERT INTO dish (name, co2)
VALUES ('salad', 1.4);
INSERT INTO dish (name, co2)
VALUES ('bread', 1.5);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('20-05-2018 07:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Breakfast', 4);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('21-05-2018 07:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Breakfast', 4);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('22-05-2018 07:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Breakfast', 4);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('23-05-2018 07:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Breakfast', 4);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('24-05-2018 07:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Breakfast', 4);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('25-05-2018 07:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Breakfast', 3);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('26-05-2018 07:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Breakfast', 4);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('26-05-2018 07:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Breakfast', 4);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('20-05-2018 12:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Lunch', 1);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('21-05-2018 12:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Lunch', 2);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('22-05-2018 12:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Lunch', 4);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('23-05-2018 12:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Lunch', 3);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('24-05-2018 12:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Lunch', 4);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('25-05-2018 12:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Lunch', 2);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('26-05-2018 12:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Lunch', 1);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('21-05-2018 15:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Coffee', 3);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('20-05-2018 18:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Dinner', 5);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('21-05-2018 18:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Dinner', 5);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('22-05-2018 18:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Dinner', 4);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('23-05-2018 18:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Dinner', 4);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('24-05-2018 18:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Dinner', 5);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('25-05-2018 18:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Dinner', 5);
INSERT INTO meal (created, recipe, picture, label, dish_id)
VALUES (to_timestamp('26-05-2018 18:36:38', 'dd-mm-yyyy hh24:mi:ss'), '', '', 'Dinner', 4);