-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestData.sql
41 lines (35 loc) · 3.04 KB
/
testData.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
USE SR10;
INSERT INTO Organisation (siren, nom, rue, ville, region, codePostal, pays, validated)
VALUES ('123456789','Spotifail', '15 Rue de la Paix', 'Paris', 'Ile-de-France', 75001, 'France', TRUE),
('987654321','Saint-Cloux', '10 Downing Street', 'London', 'Greater London', 54001, 'United Kingdom', TRUE);
INSERT INTO Utilisateur (typeUtilisateur, email, nom, prenom, dateCreation, statutCompte, mdpHash, organisation)
VALUES ('Administrateur', '[email protected]', 'Doe', 'John', '2022-01-01', 'actif', '8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92', NULL),
('Recruteur', '[email protected]', 'Smith', 'Jane', '2022-01-02', 'actif', '8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92', '123456789'),
('Candidat', '[email protected]', 'Lee', 'Alex', '2022-01-03', 'actif', '8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92', NULL),
('Candidat', '[email protected]', 'Mama', 'Joe', '2022-01-03', 'actif', '8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92', NULL),
('Candidat', '[email protected]', 'anon', 'john', '2023-01-03', 'actif', '8d969eef6ecad3c29a3a629280e686cf0c3f5d5a86aff3ca12020c923adc6c92', NULL);
INSERT INTO FichePoste (organisation, dateUpload, intitule, responsable, typeMetier, rythme, fourchetteBasse, fourchetteHaute, description, localisation)
VALUES ('123456789', '2022-01-01', 'Développeur Full-Stack', 'Doe John', 'Informatique', 'CDI', 35000, 45000, 'Nous cherchons un développeur Full-Stack expérimenté pour rejoindre notre équipe dynamique.', 'Paris'),
('123456789', '2022-01-02', 'Chef de projet marketing', 'Smith Jane', 'Marketing', 'CDI', 40000, 50000, 'Nous cherchons un chef de projet marketing passionné pour mener notre équipe de marketing.','Paris' ),
('987654321', '2022-01-03', 'Assistant administratif', 'Lee Alex', 'Administration', 'CDD', 20000, 25000, 'Nous cherchons un assistant administratif à temps partiel pour soutenir nos opérations quotidiennes.','London');
INSERT INTO Offre (dateUpload, fichePoste)
VALUES ('2022-01-01', 1),
('2022-01-02', 2),
('2022-01-03', 3);
INSERT INTO DossierCandidature (dateCandidature, statut, utilisateur, offre)
VALUES ('2022-01-05', 'refusé', 3, 1),
('2022-01-07', 'en attente de traitement', 5, 1),
('2022-01-07', 'en attente de traitement', 5, 2),
('2022-01-07', 'en attente de traitement', 5, 3),
('2022-01-06', 'accepté', 3, 2),
('2022-01-07', 'en attente de traitement', 3, 3);
INSERT INTO Document (dateUpload, nom, type, dossierCandidature)
VALUES ('2022-01-05', 'CV', 'PDF', 1),
('2022-01-05', 'Lettre de motivation', 'PDF', 1),
('2022-01-06', 'CV', 'PDF', 2),
('2022-01-06', 'Lettre de motivation', 'PDF', 2);
INSERT INTO demandeRecruteur (dateDemande, statut, organisation, utilisateur)
VALUES ('2022-01-01', 'accepte', '123456789', 2),
('2022-01-01', 'accepte', '123456789', 2),
('2022-01-02', 'refuse', '987654321', 2),
('2022-01-02', 'en attente', '123456789',4);