-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdb-seed.sql
More file actions
20 lines (18 loc) · 2.4 KB
/
db-seed.sql
File metadata and controls
20 lines (18 loc) · 2.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
INSERT into users (id, name, email, created_at) VALUES
('5', 'Guilhermo Lasso', 'guilaso@bol.com', "2024-06-02 18:01:09" ),
('6', 'Leopoldina Maria Francista', 'mafra@gmail.com', "2024-06-02 18:01:09"),
('7', 'Simón Bolivar', 'revolucion@onionproyect.com', "2024-06-02 18:01:09"),
('8', 'Dilma Rousseff', 'presidenta@pt.org.br', "2024-06-02 18:01:09"),
('9', 'João Emanuel Carneiro', 'producao@globo.com', "2024-06-02 18:01:09"),
('10', 'Georfe Boole', 'boleano@official.uk', "2024-06-02 18:01:09"),
('11', 'Leon Trotsky', 'frida@onionproyect.com', "2024-06-02 18:01:09"),
('12', 'Frida Kahlo', 'leonmiamor@onioproyect.com', "2024-06-02 18:01:09");
INSERT INTO exams (user_id, score, users_answer, review_score, review_comment, created_at) VALUES
('5', '10', '{"q1": "b", "q2": "b", "q3": "b", "q4": "b", "q5": "b", "q6": "b", "q7": "b", "q8": "b", "q9": "b", "q10": "b"}', '5', 'El mejor sitio para agregar conocimientos en Scrum', "2024-06-02 18:01:09"),
('6', '9', '{"q1": "a", "q2": "b", "q3": "b", "q4": "b", "q5": "b", "q6": "b", "q7": "b", "q8": "b", "q9": "b", "q10": "b"}', '4', 'Aonde é que eu assino para pegar o certificado?', "2024-06-02 18:01:09"),
('7', '8', '{"q1": "a", "q2": "a", "q3": "b", "q4": "b", "q5": "b", "q6": "b", "q7": "b", "q8": "b", "q9": "b", "q10": "b"}', '5', 'Não sei como fui aprovado, foi um processo muito intenso e imersivo', "2024-06-02 18:01:09"),
('8', '8', '{"q1": "a", "q2": "a", "q3": "b", "q4": "b", "q5": "b", "q6": "b", "q7": "b", "q8": "b", "q9": "b", "q10": "b"}', '4', 'Eu sabia que detrás de um cachorro, que estava escondido atrás da figura de um menino, havia hight tec tec', "2024-06-02 18:01:09"),
('9', '8', '{"q1": "a", "q2": "a", "q3": "b", "q4": "b", "q5": "b", "q6": "b", "q7": "b", "q8": "b", "q9": "b", "q10": "b"}', '4', 'Trama típica de uma das minhas novelas!', "2024-06-02 18:01:09"),
('10', '9', '{"q1": "b", "q2": "a", "q3": "b", "q4": "b", "q5": "b", "q6": "b", "q7": "b", "q8": "b", "q9": "b", "q10": "b"}', '5', 'Vocês usaram bem a matemática que eu inventei, rapazes!', "2024-06-02 18:01:09"),
('11', '5', '{"q1": "b", "q2": "a", "q3": "a", "q4": "a", "q5": "a", "q6": "a", "q7": "b", "q8": "b", "q9": "b", "q10": "b"}', '3', 'Só fiz porque minha mulher mandou', "2024-06-02 18:01:09"),
('12', '10', '{"q1": "a", "q2": "a", "q3": "b", "q4": "b", "q5": "b", "q6": "b", "q7": "b", "q8": "b", "q9": "b", "q10": "b"}', '5', 'O de cima é meu pau-mandado', "2024-06-02 18:01:09");