update paul's branch with database link on search user
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
parent
d4ee62ce18
commit
15b97837f7
@ -1,158 +1,132 @@
|
|||||||
-- Athlete Table
|
DROP TABLE IF EXISTS Athlete, Friendship, Notification, Statistique, Entrainement, Participe, SourceDonnee, Activite, FrequenceCardiaque CASCADE;
|
||||||
|
|
||||||
CREATE TABLE Athlete (
|
CREATE TABLE Athlete (
|
||||||
idAthlete SERIAL PRIMARY KEY,
|
idAthlete SERIAL PRIMARY KEY,
|
||||||
nom VARCHAR(255),
|
nom VARCHAR(255),
|
||||||
prenom VARCHAR(255),
|
prenom VARCHAR(255),
|
||||||
email VARCHAR(255) UNIQUE,
|
email VARCHAR(255) UNIQUE,
|
||||||
sexe CHAR(1),
|
sexe CHAR(1),
|
||||||
taille DECIMAL,
|
taille DECIMAL,
|
||||||
poids DECIMAL,
|
poids DECIMAL,
|
||||||
motDePasse VARCHAR(255),
|
motDePasse VARCHAR(255),
|
||||||
dateNaissance DATE
|
dateNaissance DATE,
|
||||||
|
isCoach BOOLEAN
|
||||||
);
|
);
|
||||||
|
|
||||||
-- Friendship Table
|
|
||||||
CREATE TABLE Friendship (
|
CREATE TABLE Friendship (
|
||||||
idAthlete1 INT,
|
idAthlete1 INT,
|
||||||
idAthlete2 INT,
|
idAthlete2 INT,
|
||||||
debut DATE,
|
debut DATE,
|
||||||
PRIMARY KEY (idAthlete1, idAthlete2),
|
PRIMARY KEY (idAthlete1, idAthlete2),
|
||||||
FOREIGN KEY (idAthlete1) REFERENCES Athlete (idAthlete),
|
FOREIGN KEY (idAthlete1) REFERENCES Athlete(idAthlete),
|
||||||
FOREIGN KEY (idAthlete2) REFERENCES Athlete (idAthlete)
|
FOREIGN KEY (idAthlete2) REFERENCES Athlete(idAthlete)
|
||||||
);
|
);
|
||||||
|
|
||||||
-- Notification Table
|
|
||||||
CREATE TABLE Notification (
|
CREATE TABLE Notification (
|
||||||
idNotif SERIAL PRIMARY KEY,
|
idNotif INT PRIMARY KEY,
|
||||||
message TEXT,
|
message TEXT,
|
||||||
date DATE,
|
date DATE,
|
||||||
statut BOOLEAN,
|
statut BOOLEAN,
|
||||||
urgence INT,
|
urgence INT,
|
||||||
athleteId INT,
|
athleteId INT,
|
||||||
FOREIGN KEY (athleteId) REFERENCES Athlete (idAthlete)
|
FOREIGN KEY (athleteId) REFERENCES Athlete(idAthlete)
|
||||||
);
|
|
||||||
|
|
||||||
-- Coach Table
|
|
||||||
CREATE TABLE Coach (
|
|
||||||
idCoach SERIAL PRIMARY KEY,
|
|
||||||
athleteId INT,
|
|
||||||
FOREIGN KEY (athleteId) REFERENCES Athlete (idAthlete)
|
|
||||||
);
|
);
|
||||||
|
|
||||||
-- Statistique Table
|
|
||||||
CREATE TABLE Statistique (
|
CREATE TABLE Statistique (
|
||||||
idStatistique SERIAL PRIMARY KEY,
|
idStatistique INT PRIMARY KEY,
|
||||||
poids DECIMAL,
|
poids DECIMAL,
|
||||||
fcMoyenne DECIMAL,
|
fcMoyenne DECIMAL,
|
||||||
fcMax DECIMAL,
|
fcMax DECIMAL,
|
||||||
caloriesBruleesMoy DECIMAL,
|
caloriesBruleesMoy DECIMAL,
|
||||||
date DATE,
|
date DATE,
|
||||||
athleteId INT,
|
athleteId INT,
|
||||||
FOREIGN KEY (athleteId) REFERENCES Athlete (idAthlete)
|
FOREIGN KEY (athleteId) REFERENCES Athlete(idAthlete)
|
||||||
);
|
);
|
||||||
|
|
||||||
-- Entrainement Table
|
|
||||||
CREATE TABLE Entrainement (
|
CREATE TABLE Entrainement (
|
||||||
idEntrainement SERIAL PRIMARY KEY,
|
idEntrainement INT PRIMARY KEY,
|
||||||
date DATE,
|
date DATE,
|
||||||
description TEXT,
|
description TEXT,
|
||||||
latitude DECIMAL,
|
latitude DECIMAL,
|
||||||
longitude DECIMAL,
|
longitude DECIMAL,
|
||||||
feedback TEXT,
|
feedback TEXT,
|
||||||
coachId INT,
|
athleteId INT,
|
||||||
FOREIGN KEY (coachId) REFERENCES Coach (idCoach)
|
FOREIGN KEY (athleteId) REFERENCES Athlete(idAthlete)
|
||||||
);
|
);
|
||||||
|
|
||||||
-- Participe Table
|
|
||||||
CREATE TABLE Participe (
|
CREATE TABLE Participe (
|
||||||
athleteId INT,
|
athleteId INT,
|
||||||
entrainementId INT,
|
entrainementId INT,
|
||||||
PRIMARY KEY (athleteId, entrainementId),
|
PRIMARY KEY (athleteId, entrainementId),
|
||||||
FOREIGN KEY (athleteId) REFERENCES Athlete (idAthlete),
|
FOREIGN KEY (athleteId) REFERENCES Athlete(idAthlete),
|
||||||
FOREIGN KEY (entrainementId) REFERENCES Entrainement (idEntrainement)
|
FOREIGN KEY (entrainementId) REFERENCES Entrainement(idEntrainement)
|
||||||
);
|
);
|
||||||
|
|
||||||
-- SourceDonnee Table
|
|
||||||
CREATE TABLE SourceDonnee (
|
CREATE TABLE SourceDonnee (
|
||||||
idSource SERIAL PRIMARY KEY,
|
idSource INT PRIMARY KEY,
|
||||||
type VARCHAR(255),
|
type VARCHAR(255),
|
||||||
modele VARCHAR(255),
|
modele VARCHAR(255),
|
||||||
precision DECIMAL,
|
precision2 DECIMAL,
|
||||||
athleteId INT,
|
athleteId INT,
|
||||||
FOREIGN KEY (athleteId) REFERENCES Athlete (idAthlete)
|
FOREIGN KEY (athleteId) REFERENCES Athlete(idAthlete)
|
||||||
);
|
);
|
||||||
|
|
||||||
-- Activite Table
|
|
||||||
CREATE TABLE Activite (
|
CREATE TABLE Activite (
|
||||||
idActivite SERIAL PRIMARY KEY,
|
idActivite INT PRIMARY KEY,
|
||||||
type VARCHAR(255),
|
type VARCHAR(255),
|
||||||
date DATE,
|
date DATE,
|
||||||
heureDeDebut TIME,
|
heureDeDebut TIME,
|
||||||
heureDeFin TIME,
|
heureDeFin TIME,
|
||||||
effortRessent DECIMAL,
|
effortRessent DECIMAL,
|
||||||
variabilite DECIMAL,
|
variabilite DECIMAL,
|
||||||
variance DECIMAL,
|
variance DECIMAL,
|
||||||
ecartType DECIMAL,
|
ecartType DECIMAL,
|
||||||
moyenne DECIMAL,
|
moyenne DECIMAL,
|
||||||
maximum DECIMAL,
|
maximum DECIMAL,
|
||||||
minimum DECIMAL,
|
minimum DECIMAL,
|
||||||
temperatureMoyenne DECIMAL,
|
temperatureMoyenne DECIMAL,
|
||||||
athleteId INT,
|
athleteId INT,
|
||||||
sourceId INT,
|
sourceId INT,
|
||||||
FOREIGN KEY (athleteId) REFERENCES Athlete (idAthlete),
|
FOREIGN KEY (athleteId) REFERENCES Athlete(idAthlete),
|
||||||
FOREIGN KEY (sourceId) REFERENCES SourceDonnee (idSource)
|
FOREIGN KEY (sourceId) REFERENCES SourceDonnee(idSource)
|
||||||
);
|
);
|
||||||
|
|
||||||
-- FrequenceCardiaque Table
|
|
||||||
CREATE TABLE FrequenceCardiaque (
|
CREATE TABLE FrequenceCardiaque (
|
||||||
idFc SERIAL PRIMARY KEY,
|
idFc INT PRIMARY KEY,
|
||||||
altitude DECIMAL,
|
altitude DECIMAL,
|
||||||
temps TIME,
|
temps TIME,
|
||||||
temperature DECIMAL,
|
temperature DECIMAL,
|
||||||
bpm INT,
|
bpm INT,
|
||||||
longitude DECIMAL,
|
longitude DECIMAL,
|
||||||
latitude DECIMAL,
|
latitude DECIMAL,
|
||||||
activiteId INT,
|
activiteId INT,
|
||||||
FOREIGN KEY (activiteId) REFERENCES Activite (idActivite)
|
FOREIGN KEY (activiteId) REFERENCES Activite(idActivite)
|
||||||
);
|
);
|
||||||
|
|
||||||
-- Insertion de données dans la table Athlete
|
INSERT INTO Athlete (idAthlete, nom, prenom, email, sexe, taille, poids, motDePasse, dateNaissance, isCoach) VALUES
|
||||||
INSERT INTO Athlete (nom, prenom, email, sexe, taille, poids, motDePasse, dateNaissance) VALUES
|
(1, 'Doe', 'John', 'john.doe@example.com', 'M', 1.80, 70, 'password123', '1990-01-01', FALSE),
|
||||||
('Doe', 'John', 'john.doe@example.com', 'M', 1.80, 70, 'password123', '1990-01-01'),
|
(2, 'Smith', 'Jane', 'jane.smith@example.com', 'F', 1.65, 60, 'password456', '1992-02-02', TRUE);
|
||||||
('Smith', 'Jane', 'jane.smith@example.com', 'F', 1.65, 60, 'password456', '1992-02-02');
|
|
||||||
|
|
||||||
-- Insertion de données dans la table Friendship
|
|
||||||
INSERT INTO Friendship (idAthlete1, idAthlete2, debut) VALUES
|
INSERT INTO Friendship (idAthlete1, idAthlete2, debut) VALUES
|
||||||
(1, 2, '2023-01-01');
|
(1, 2, '2023-01-01');
|
||||||
|
|
||||||
-- Insertion de données dans la table Notification
|
|
||||||
INSERT INTO Notification (message, date, statut, urgence, athleteId) VALUES
|
|
||||||
('Training session at 10 AM', '2023-03-10', TRUE, 1, 1);
|
|
||||||
|
|
||||||
-- Insertion de données dans la table Coach
|
INSERT INTO Notification (idNotif, message, date, statut, urgence, athleteId) VALUES
|
||||||
INSERT INTO Coach (athleteId) VALUES
|
(1, 'Training session at 10 AM', '2023-03-10', TRUE, 1, 1);
|
||||||
(1);
|
|
||||||
|
|
||||||
-- Insertion de données dans la table Statistique
|
INSERT INTO Statistique (idStatistique, poids, fcMoyenne, fcMax, caloriesBruleesMoy, date, athleteId) VALUES
|
||||||
INSERT INTO Statistique (poids, fcMoyenne, fcMax, caloriesBruleesMoy, date, athleteId) VALUES
|
(1, 70, 80, 150, 500, '2023-03-10', 1);
|
||||||
(70, 80, 150, 500, '2023-03-10', 1);
|
|
||||||
|
|
||||||
-- Insertion de données dans la table Entrainement
|
INSERT INTO Entrainement (idEntrainement, date, description, latitude, longitude, feedback, athleteId) VALUES
|
||||||
INSERT INTO Entrainement (date, description, latitude, longitude, feedback, coachId) VALUES
|
(1, '2023-03-12', 'Long run in the park', 40.7128, -74.0060, 'Good effort', 1);
|
||||||
('2023-03-12', 'Long run in the park', 40.7128, -74.0060, 'Good effort', 1);
|
|
||||||
|
|
||||||
-- Insertion de données dans la table Participe
|
|
||||||
INSERT INTO Participe (athleteId, entrainementId) VALUES
|
INSERT INTO Participe (athleteId, entrainementId) VALUES
|
||||||
(1, 1);
|
(1, 1);
|
||||||
|
|
||||||
-- Insertion de données dans la table SourceDonnee
|
INSERT INTO SourceDonnee (idSource, type, modele, precision2, athleteId) VALUES
|
||||||
INSERT INTO SourceDonnee (type, modele, precision, athleteId) VALUES
|
(1, 'Heart Rate Monitor', 'HRM-Pro', 98.5, 1);
|
||||||
('Heart Rate Monitor', 'HRM-Pro', 98.5, 1);
|
|
||||||
|
|
||||||
-- Insertion de données dans la table Activite
|
INSERT INTO Activite (idActivite, type, date, heureDeDebut, heureDeFin, effortRessent, variabilite, variance, ecartType, moyenne, maximum, minimum, temperatureMoyenne, athleteId, sourceId) VALUES
|
||||||
INSERT INTO Activite (type, date, heureDeDebut, heureDeFin, effortRessent, variabilite, variance, ecartType, moyenne, maximum, minimum, temperatureMoyenne, athleteId, sourceId) VALUES
|
(1, 'Running', '2023-03-10', '08:00:00', '09:00:00', 7, 0.5, 1, 0.1, 140, 160, 120, 20, 1, 1);
|
||||||
('Running', '2023-03-10', '08:00:00', '09:00:00', 7, 0.5, 1, 0.1, 140, 160, 120, 20, 1, 1);
|
|
||||||
|
|
||||||
-- Insertion de données dans la table FrequenceCardiaque
|
INSERT INTO FrequenceCardiaque (idFc, altitude, temps, temperature, bpm, longitude, latitude, activiteId) VALUES
|
||||||
INSERT INTO FrequenceCardiaque (altitude, temps, temperature, bpm, longitude, latitude, activiteId) VALUES
|
(1, 100, '08:15:00', 15, 130, -74.0060, 40.7128, 1);
|
||||||
(100, '08:15:00', 15, 130, -74.0060, 40.7128, 1);
|
|
||||||
|
@ -0,0 +1,7 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
$dsn = "psql:host=localhost;dbname=sae_3;";
|
||||||
|
$username = "Perederii";
|
||||||
|
$password = "";
|
||||||
|
|
||||||
|
?>
|
Loading…
Reference in new issue