-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.sql
More file actions
59 lines (52 loc) · 19.8 KB
/
data.sql
File metadata and controls
59 lines (52 loc) · 19.8 KB
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
-- MySQL dump 10.13 Distrib 8.2.0, for Linux (x86_64)
--
-- Host: localhost Database: photoapi
-- ------------------------------------------------------
-- Server version 8.2.0
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `photo`
--
DROP TABLE IF EXISTS `photo`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `photo` (
`id` int NOT NULL AUTO_INCREMENT,
`photo_api` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`nom` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`prenom` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`poste` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`equipe` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`agence` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`photo_pro` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`photo_fun` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`file_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=96 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `photo`
--
LOCK TABLES `photo` WRITE;
/*!40000 ALTER TABLE `photo` DISABLE KEYS */;
INSERT INTO `photo` VALUES (1,NULL,'AHMANE','Hafid','Développeur','Pôle AI','Rennes','https://127.0.0.1:8000/photo/pro/AHMANE-Hafid.webp','https://127.0.0.1:8000/photo/fun/AHMANE-Hafid.webp',NULL),(2,NULL,'ANDRES','Frédéric','Responsable d\'équipe','Pôle AI','Rennes','https://127.0.0.1:8000/photo/pro/ANDRES-Frederic.webp','https://127.0.0.1:8000/photo/fun/ANDRES-Frederic.webp',NULL),(3,NULL,'AUBRY','Christophe','Développeur Senior ','Pôle Walker','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(4,NULL,'AULNETTE','Philippe','Directeur Technique ','Team IT','Rennes','https://127.0.0.1:8000/photo/pro/AULNETTE-Philippe.webp','https://127.0.0.1:8000/photo/fun/AULNETTE-Philippe.webp',NULL),(5,NULL,'AVALIANI','Ketevan','Assistante administrative','Team Rocket','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(6,NULL,'BAUDOT','Tom','Développeur ','Pôle Cousteau ','Rennes','https://127.0.0.1:8000/photo/pro/BAUDOT-Tom.webp','https://127.0.0.1:8000/photo/fun/BAUDOT-Tom.webp',NULL),(7,NULL,'BEAUFILS','Maud','Product Owner','Pôle 8.6','Rennes','https://127.0.0.1:8000/photo/pro/BEAUFILS-Maud.webp','https://127.0.0.1:8000/photo/fun/BEAUFILS-Maud.webp',NULL),(8,NULL,'CANTEPIE','Adrien','Développeur','Pôle Cousteau ','Rennes','https://127.0.0.1:8000/photo/pro/CANTEPIE-Adrien.webp','https://127.0.0.1:8000/photo/fun/CANTEPIE-Adrien.webp',NULL),(9,NULL,'CARNEIRO','Mickael','RSI ','Team IT ','Rennes','https://127.0.0.1:8000/photo/pro/CARNEIRO-Mickael.webp','https://127.0.0.1:8000/photo/fun/CARNEIRO-Mickael.webp',NULL),(10,NULL,'CASTEX','David','Développeur','Pôle Position','Rennes','https://127.0.0.1:8000/photo/pro/CASTEX-David.webp','https://127.0.0.1:8000/photo/fun/CASTEX-David.webp',NULL),(11,NULL,'CHAPUIS','Brice','Développeur','Bug Buster','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(12,NULL,'CHEVALIER','Elodie','Product Owner','Pôle Position','Rennes','https://127.0.0.1:8000/photo/pro/CHEVALIER-Elodie.webp','https://127.0.0.1:8000/photo/fun/CHEVALIER-Elodie.webp',NULL),(13,NULL,'CHEVALIER','Benoît','Développeur','Team Elephant ','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(14,NULL,'COET','Jean','Développeur','Pôle Cousteau ','Rennes','https://127.0.0.1:8000/photo/pro/COET-Jean.webp','https://127.0.0.1:8000/photo/fun/COET-Jean.webp',NULL),(15,NULL,'COUTAND','Bastien','Alternant','Team IT ','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(16,NULL,'CRUTEL','Pauline','Chargée de recrutement ','Team Rocket ','Rennes','https://127.0.0.1:8000/photo/pro/CRUTEL-Pauline.webp','https://127.0.0.1:8000/photo/fun/CRUTEL-Pauline.webp',NULL),(17,NULL,'DANTAN','Remy','Développeur ','Team Eden','Rennes','https://127.0.0.1:8000/photo/pro/DANTAN-Remy.webp','https://127.0.0.1:8000/photo/fun/DANTAN-Remy.webp',NULL),(18,NULL,'DE MONCUIT','Gaëtan','Responsable Marketing ','Team Rocket ','Rennes','https://127.0.0.1:8000/photo/pro/DE-MONCUIT-Gaetan.webp','https://127.0.0.1:8000/photo/fun/DE-MONCUIT-Gaetan.webp',NULL),(19,NULL,'DELANOE','Julien','Développeur','Bug Buster','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(20,NULL,'DELENTE','Edouard','Responsable Développement','Team Rocket ','Rennes','https://127.0.0.1:8000/photo/pro/DELENTE-Edouard.webp','https://127.0.0.1:8000/photo/fun/DELENTE-Edouard.webp',NULL),(21,NULL,'DESGRANGES','Pierre','Développeur Junior','Pôle Position ','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(22,NULL,'DIGUET','Lucas','Développeur ','Pôle 8.6','Rennes','https://127.0.0.1:8000/photo/pro/DIGUET-Lucas.webp','https://127.0.0.1:8000/photo/fun/DIGUET-Lucas.webp',NULL),(23,NULL,'FAILLIE','Michel','Directeur de l\'agence d\'Angers ','Team Rocket','Rennes','https://127.0.0.1:8000/photo/pro/FAILLIE-Michel.webp','https://127.0.0.1:8000/photo/fun/FAILLIE-Michel.webp',NULL),(24,NULL,'GANTOIS','Emilien','Développeur','Pôle Cousteau ','Rennes','https://127.0.0.1:8000/photo/pro/GANTOIS-Emilien.webp','https://127.0.0.1:8000/photo/fun/GANTOIS-Emilien.webp',NULL),(25,NULL,'GAUCHER','Clara','Chef de Projet','Pôle Walker','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(26,NULL,'GELEBART','Nicolas','Business Manager','Team Rocket ','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(27,NULL,'GINGUENEAU','Pauline','Assistante Commerciale ','Team Rocket ','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(28,NULL,'GOSSELIN','Antoine','Développeur Junior','Pôle Walker','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(29,NULL,'GREFFIER','Jean-Christophe','Administrateur Système & Réseau','Team IT ','Rennes','https://127.0.0.1:8000/photo/pro/GREFFIER-Jean-Christophe.webp','https://127.0.0.1:8000/photo/fun/GREFFIER-Jean-Christophe.webp',NULL),(30,NULL,'GUERIN','Nicolas','Développeur','Pôle Walker','Rennes','https://127.0.0.1:8000/photo/pro/GUERIN-Nicolas.webp','https://127.0.0.1:8000/photo/fun/GUERIN-Nicolas.webp',NULL),(31,NULL,'GUILBERT','Antoine','Chef de Projet','Bug Buster','Rennes','https://127.0.0.1:8000/photo/pro/GUILBERT-Antoine.webp','https://127.0.0.1:8000/photo/fun/GUILBERT-Antoine.webp',NULL),(32,NULL,'JEZEQUEL','Vincent','Responsable Technique ','Pôle Position','Rennes','https://127.0.0.1:8000/photo/pro/JEZEQUEL-Vincent.webp','https://127.0.0.1:8000/photo/fun/JEZEQUEL-Vincent.webp',NULL),(33,NULL,'JUBLAN','Sandrine','Assistante administrative','Team Rocket','Rennes','https://127.0.0.1:8000/photo/pro/JUBLAN-Sandrine.webp','https://127.0.0.1:8000/photo/fun/JUBLAN-Sandrine.webp',NULL),(34,NULL,'LE COQ','Alexandra','Comptable ','Team Rocket','Rennes','https://127.0.0.1:8000/photo/pro/LE-COQ-Alexandra.webp','https://127.0.0.1:8000/photo/fun/LE-COQ-Alexandra.webp',NULL),(35,NULL,'LE GOFF','Sébastien','Développeur Senior ','Bug Buster','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(36,NULL,'LECOLAZET','Aymeric','Alternant','Team Elephant ','Rennes','https://127.0.0.1:8000/photo/pro/LECOLAZET-Aymeric.webp','https://127.0.0.1:8000/photo/fun/LECOLAZET-Aymeric.webp',NULL),(37,NULL,'LEGRAND','Thomas','Responsable d\'Equipe','Pôle Position ','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(38,NULL,'LEMARIE','Benjamin','Design Manager','Studio Design','Rennes','https://127.0.0.1:8000/photo/pro/LEMARIE-Benjamin.webp','https://127.0.0.1:8000/photo/fun/LEMARIE-Benjamin.webp',NULL),(39,NULL,'LERAY','Romain','Développeur ','Bug Buster','Rennes','https://127.0.0.1:8000/photo/pro/LERAY-Romain.webp','https://127.0.0.1:8000/photo/fun/LERAY-Romain.webp',NULL),(40,NULL,'LESAGE','Olivier','Développeur Senior ','Pôle AI','Rennes','https://127.0.0.1:8000/photo/pro/LESAGE-Olivier.webp','https://127.0.0.1:8000/photo/fun/LESAGE-Olivier.webp',NULL),(41,NULL,'LEVASSEUR','Damien','Développeur ','Team Eden','Rennes','https://127.0.0.1:8000/photo/pro/LEVASSEUR-Damien.webp','https://127.0.0.1:8000/photo/fun/LEVASSEUR-Damien.webp',NULL),(42,NULL,'LIDURIN','Maël','Développeur / Chef de Projet ','Pôle AI','Rennes','https://127.0.0.1:8000/photo/pro/LIDURIN-Mael.webp','https://127.0.0.1:8000/photo/fun/LIDURIN-Mael.webp',NULL),(43,NULL,'LOICHON','Yvan','Intégrateur ','Studio Design','Rennes','https://127.0.0.1:8000/photo/pro/LOICHON-Yvan.webp','https://127.0.0.1:8000/photo/fun/LOICHON-Yvan.webp',NULL),(44,NULL,'LOUSTAU','Quentin','Développeur ','Team Eden','Rennes','https://127.0.0.1:8000/photo/pro/LOUSTAU-Quentin.webp','https://127.0.0.1:8000/photo/fun/LOUSTAU-Quentin.webp',NULL),(45,NULL,'LOUVEAU','Bertille','Chargée de communication ','Team Rocket','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(46,NULL,'MADEC','Florian','Développeur Junior','Pôle Cousteau ','Rennes','https://127.0.0.1:8000/photo/pro/MADEC-Florian.webp','https://127.0.0.1:8000/photo/fun/MADEC-Florian.webp',NULL),(47,NULL,'MESLET','Faustine','Talent Acquisition Specialist','Team Rocket ','Rennes','https://127.0.0.1:8000/photo/pro/MESLET-Faustine.webp','https://127.0.0.1:8000/photo/fun/MESLET-Faustine.webp',NULL),(48,NULL,'MUSET','Clément','Développeur','Pôle Cousteau ','Rennes','https://127.0.0.1:8000/photo/pro/MUSET-Clement.webp','https://127.0.0.1:8000/photo/fun/MUSET-Clement.webp',NULL),(49,NULL,'OBEE','Boris','Technicien Support','Pôle AI','Rennes','https://127.0.0.1:8000/photo/pro/OBEE-Boris.webp','https://127.0.0.1:8000/photo/fun/OBEE-Boris.webp',NULL),(50,NULL,'OZEAU','Morgan','Développeur Senior ','Pôle 8.6','Rennes','https://127.0.0.1:8000/photo/pro/OZEAU-Morgan.webp','https://127.0.0.1:8000/photo/fun/OZEAU-Morgan.webp',NULL),(51,NULL,'PERCHEREL ','Ludovic','Responsable d\'équipe','Bug Buster','Rennes','https://127.0.0.1:8000/photo/pro/PERCHEREL-Ludovic.webp','https://127.0.0.1:8000/photo/fun/PERCHEREL-Ludovic.webp',NULL),(52,NULL,'PERLINSKI','Alix','Cheffe de projet','Team Elephant ','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(53,NULL,'POISSON','Florian','Développeur Junior','Pôle Position ','Rennes','https://127.0.0.1:8000/photo/pro/POISSON-Florian.webp','https://127.0.0.1:8000/photo/fun/POISSON-Florian.webp',NULL),(54,NULL,'PRUD\'HOMME','Emilie','Cheffe de projet','Pôle Cousteau ','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(55,NULL,'QUENTEL','Thomas','Développeur','Pôle Position','Rennes','https://127.0.0.1:8000/photo/pro/QUENTEL-Thomas.webp','https://127.0.0.1:8000/photo/fun/QUENTEL-Thomas.webp',NULL),(56,NULL,'RAMAUGE','Benjamin','Développeur ','Pôle Walker','Rennes','https://127.0.0.1:8000/photo/pro/RAMAUGE-Benjamin.webp','https://127.0.0.1:8000/photo/fun/RAMAUGE-Benjamin.webp',NULL),(57,NULL,'RENARD','Valentin','Développeur ','Pôle Position','Rennes','https://127.0.0.1:8000/photo/pro/RENARD-Valentin.webp','https://127.0.0.1:8000/photo/fun/RENARD-Valentin.webp',NULL),(58,NULL,'ROUSSEAU','Yoann','Développeur Junior','Bug Buster','Rennes','https://127.0.0.1:8000/photo/pro/ROUSSEAU-Yoann.webp','https://127.0.0.1:8000/photo/fun/ROUSSEAU-Yoann.webp',NULL),(59,NULL,'SAUVE','Christophe','Chef de projet','Pôle Cousteau ','Rennes','https://127.0.0.1:8000/photo/pro/SAUVE-Christophe.webp','https://127.0.0.1:8000/photo/fun/SAUVE-Christophe.webp',NULL),(60,NULL,'SAUVE','Karine','Directrice Administrative et Financière','Team Rocket ','Rennes','https://127.0.0.1:8000/photo/pro/SAUVE-Karine.webp','https://127.0.0.1:8000/photo/fun/SAUVE-Karine.webp',NULL),(61,NULL,'SIMON','Thomas','Responsable d\'équipe','Pôle Walker','Rennes','https://127.0.0.1:8000/photo/pro/SIMON-Thomas.webp','https://127.0.0.1:8000/photo/fun/SIMON-Thomas.webp',NULL),(62,NULL,'TARLET','Emeline','Alternant','Team Rocket ','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(63,NULL,'THOMAS','Pierre-Yves','Développeur ','Bug Buster','Rennes','https://127.0.0.1:8000/photo/pro/THOMAS-Pierre-Yves.webp','https://127.0.0.1:8000/photo/fun/THOMAS-Pierre-Yves.webp',NULL),(64,NULL,'TOQUE','Julien','Business Developer ','Team Rocket','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(65,NULL,'TREMIER','Stéphane','Président ','Team Rocket ','Rennes','https://127.0.0.1:8000/photo/pro/TREMIER-Stephane.webp','https://127.0.0.1:8000/photo/fun/TREMIER-Stephane.webp',NULL),(66,NULL,'VANNIER','Samuel','Développeur Junior','Pôle AI','Rennes','https://127.0.0.1:8000/photo/pro/VANNIER-Samuel.webp','https://127.0.0.1:8000/photo/fun/VANNIER-Samuel.webp',NULL),(67,NULL,'VEILLAUX','Pierre','Business Developer Junior ','Team Rocket','Rennes','https://127.0.0.1:8000/photo/pro/VEILLAUX-Pierre.webp','https://127.0.0.1:8000/photo/fun/VEILLAUX-Pierre.webp',NULL),(68,NULL,'VERON','Maël','Développeur Junior','Pôle 8.6','Rennes','https://127.0.0.1:8000/photo/pro/VERON-Mael.webp','https://127.0.0.1:8000/photo/fun/VERON-Mael.webp',NULL),(69,NULL,'AUPIAIS','David','Ingénieur Fullstack','Pôle Passe Partout ','Angers','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(70,NULL,'BIORET','Nicolas','Développeur','Pôle Passe Partout ','Angers','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(71,NULL,'BONTEMPS','Quentin','Analyste développeur','Pôle Passe Partout ','Angers','https://127.0.0.1:8000/photo/pro/BONTEMPS-Quentin.webp','https://127.0.0.1:8000/photo/fun/BONTEMPS-Quentin.webp',NULL),(72,NULL,'CHENARD','Renaud','Développeur','Pôle Griffondor','Angers','https://127.0.0.1:8000/photo/pro/CHENARD-Renaud.webp','https://127.0.0.1:8000/photo/fun/CHENARD-Renaud.webp',NULL),(73,NULL,'DELCROS','Cédric','Chef de projet / Responsable d\'équipe','Pôle Passe Partout ','Angers','https://127.0.0.1:8000/photo/pro/DELCROS-Cedric.webp','https://127.0.0.1:8000/photo/fun/DELCROS-Cedric.webp',NULL),(74,NULL,'DELEVALLEZ','Zacharie','Développeur Junior','Pôle Passe Partout ','Angers','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(75,NULL,'DURAND','Guillaume','Développeur','Pôle Griffondor ','Angers','https://127.0.0.1:8000/photo/pro/DURAND-Guillaume.webp','https://127.0.0.1:8000/photo/fun/DURAND-Guillaume.webp',NULL),(76,NULL,'GIRARD','Amaury','Développeur','Pôle Passe Partout ','Angers','https://127.0.0.1:8000/photo/pro/GIRARD-Amaury.webp','https://127.0.0.1:8000/photo/fun/GIRARD-Amaury.webp',NULL),(77,NULL,'GARRETA ','Antoine','Développeur Junior ','Pôle Passe Partout ','Angers','https://127.0.0.1:8000/photo/pro/GARRETA-Antoine.webp','https://127.0.0.1:8000/photo/fun/GARRETA-Antoine.webp',NULL),(78,NULL,'GUERBAA','Ines','Développeur','Pôle Griffondor','Angers','https://127.0.0.1:8000/photo/pro/GUERBAA-Ines.webp','https://127.0.0.1:8000/photo/fun/GUERBAA-Ines.webp',NULL),(79,NULL,'HAMON','Kévin','Développeur','Pôle Passe Partout ','Angers','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(80,NULL,'JLAIEL','Islem','Alternant ','Pôle Passe Partout ','Angers','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(81,NULL,'KOBAA','Marwen','Développeur','Pôle Griffondor','Angers','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(82,NULL,'KULESIAK','Laura','Chef de projet','Pôle Passe Partout ','Angers','https://127.0.0.1:8000/photo/pro/KULESIAK-Laura.webp','https://127.0.0.1:8000/photo/fun/KULESIAK-Laura.webp',NULL),(83,NULL,'LEBEL','Jérémy','Lead Developpeur ','Pôle Griffondor','Angers','https://127.0.0.1:8000/photo/pro/LEBEL-Jeremy.webp','https://127.0.0.1:8000/photo/fun/LEBEL-Jeremy.webp',NULL),(84,NULL,'LEMAITRE ','Mathieu','Chef de projet','Pôle Griffondor','Angers','https://127.0.0.1:8000/photo/pro/LEMAITRE-Mathieu.webp','https://127.0.0.1:8000/photo/fun/LEMAITRE-Mathieu.webp',NULL),(85,NULL,'MAISONNEUVE ','Emmanuel','Directeur artistique','Studio Design','Angers','https://127.0.0.1:8000/photo/pro/MAISONNEUVE-Emmanuel.webp','https://127.0.0.1:8000/photo/fun/MAISONNEUVE-Emmanuel.webp',NULL),(86,NULL,'MOREAU ','Maxime','Développeur','Pôle Passe Partout ','Angers','https://127.0.0.1:8000/photo/pro/MOREAU-Maxime.webp','https://127.0.0.1:8000/photo/fun/MOREAU-Maxime.webp',NULL),(87,NULL,'OBLE ','Maxime','Développeur Junior ','Pôle Griffondor','Angers','https://127.0.0.1:8000/photo/pro/OBLE-Maxime.webp','https://127.0.0.1:8000/photo/fun/OBLE-Maxime.webp',NULL),(88,NULL,'PEAN ','Emilien','Responsable d\'équipe','Pôle Griffondor','Angers','https://127.0.0.1:8000/photo/pro/PEAN-Emilien.webp','https://127.0.0.1:8000/photo/fun/PEAN-Emilien.webp',NULL),(89,NULL,'BENSI','Louis','Développeur Front ','Studio Design','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(90,NULL,'DOLLO','Vincent','Développeur Mobile','Team Dev','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(91,NULL,'LANSONNEUR','Thomas','UX/UI Designer ','Studio Design','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(92,NULL,'LE GOFF ','Jean-Marie','Coordinateur de projets ','Team Dev','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(93,NULL,'LE MEE ','Antonin','Développeur','Team Dev','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(94,NULL,'SACHET','Mathieu','Lead Developpeur ','Team Dev','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL),(95,NULL,'TAILLAND ','Gaelle','Cheffe de projet','Team Dev','Rennes','https://127.0.0.1:8000/photo/pro/default.webp','https://127.0.0.1:8000/photo/fun/default.webp',NULL);
/*!40000 ALTER TABLE `photo` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2024-01-18 13:25:18