On va pas faire ça en prod, quand même…

This commit is contained in:
Timothée Huneau 2025-02-22 22:50:34 +00:00
parent d3ba7b4522
commit 68cc2ef6dd
3 changed files with 140 additions and 0 deletions

BIN
db/cuisine.db Normal file

Binary file not shown.

136
db/structureCuisine.sql Normal file
View file

@ -0,0 +1,136 @@
/*!999999\- enable the sandbox mode */
-- MariaDB dump 10.19 Distrib 10.11.8-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: cuisine
-- ------------------------------------------------------
-- Server version 10.11.8-MariaDB-0ubuntu0.24.04.1
/*!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 */;
/*!40101 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 `Aime`
DROP TABLE IF EXISTS `Aime`;
CREATE TABLE `Aime` (
`ingredient` int(11) DEFAULT NULL,
`humain` int(11) DEFAULT NULL,
`niveau` tinyint(4) DEFAULT NULL
);
-- Table structure for table `Genre`
DROP TABLE IF EXISTS `Genre`;
CREATE TABLE `Genre` (
`id` int(11) NOT NULL,
`nom` mediumtext DEFAULT NULL,
PRIMARY KEY (`id`)
);
-- Table structure for table `Humain`
DROP TABLE IF EXISTS `Humain`;
CREATE TABLE `Humain` (
`id` int(11) NOT NULL,
`nom` mediumtext DEFAULT NULL,
PRIMARY KEY (`id`)
);
-- Table structure for table `Ingredient`
DROP TABLE IF EXISTS `Ingredient`;
CREATE TABLE `Ingredient` (
`id` int(11) NOT NULL,
`nom` mediumtext DEFAULT NULL,
`jan` tinyint(1) DEFAULT NULL,
`fev` tinyint(1) DEFAULT NULL,
`mar` tinyint(1) DEFAULT NULL,
`avr` tinyint(1) DEFAULT NULL,
`mai` tinyint(1) DEFAULT NULL,
`jun` tinyint(1) DEFAULT NULL,
`jul` tinyint(1) DEFAULT NULL,
`aou` tinyint(1) DEFAULT NULL,
`sep` tinyint(1) DEFAULT NULL,
`ocb` tinyint(1) DEFAULT NULL,
`nov` tinyint(1) DEFAULT NULL,
`dem` tinyint(1) DEFAULT NULL,
PRIMARY KEY (`id`)
);
-- Table structure for table `Preparation`
DROP TABLE IF EXISTS `Preparation`;
CREATE TABLE `Preparation` (
`id` int(11) NOT NULL,
`nom` mediumtext DEFAULT NULL,
PRIMARY KEY (`id`)
);
-- Table structure for table `Recette`
DROP TABLE IF EXISTS `Recette`;
CREATE TABLE `Recette` (
`id` int(11) NOT NULL,
`nom` mediumtext DEFAULT NULL,
`tempsTotal` mediumtext DEFAULT NULL,
`genre` int(11) DEFAULT NULL,
`unitePortion` int(11) DEFAULT NULL,
`nbPortion` mediumtext DEFAULT NULL,
`realisation` mediumtext DEFAULT NULL,
`commentaire` mediumtext DEFAULT NULL,
PRIMARY KEY (`id`)
);
-- Table structure for table `RecetteIngredient`
DROP TABLE IF EXISTS `RecetteIngredient`;
CREATE TABLE `RecetteIngredient` (
`ingredient` int(11) NOT NULL,
`recette` int(11) NOT NULL,
`quantite` mediumtext DEFAULT NULL,
`unite` int(11) DEFAULT NULL,
PRIMARY KEY (`ingredient`,`recette`)
);
-- Table structure for table `RecettePreparation`
DROP TABLE IF EXISTS `RecettePreparation`;
CREATE TABLE `RecettePreparation` (
`preparation` int(11) NOT NULL,
`recette` int(11) NOT NULL,
`duree` int(11) DEFAULT NULL,
`temperature` mediumtext DEFAULT NULL,
PRIMARY KEY (`preparation`,`recette`)
);
-- Table structure for table `RecetteUstensile`
DROP TABLE IF EXISTS `RecetteUstensile`;
CREATE TABLE `RecetteUstensile` (
`ustensile` int(11) NOT NULL,
`recette` int(11) NOT NULL,
`commentaire` mediumtext DEFAULT NULL,
PRIMARY KEY (`ustensile`,`recette`)
);
-- Table structure for table `Reutilise`
DROP TABLE IF EXISTS `Reutilise`;
CREATE TABLE `Reutilise` (
`utilisee` int(11) NOT NULL,
`utilisant` int(11) NOT NULL,
`quantite` mediumtext DEFAULT NULL,
PRIMARY KEY (`utilisee`,`utilisant`)
);
-- Table structure for table `Unite`
DROP TABLE IF EXISTS `Unite`;
CREATE TABLE `Unite` (
`id` int(11) NOT NULL,
`nom` mediumtext DEFAULT NULL
);
-- Table structure for table `Ustensile`
DROP TABLE IF EXISTS `Ustensile`;
CREATE TABLE `Ustensile` (
`id` int(11) NOT NULL,
`nom` mediumtext DEFAULT NULL
);
-- Dump completed on 2025-02-22 23:24:29

View file

@ -1,6 +1,10 @@
<?php // contrôleur frontal
session_start();
error_reporting(E_ALL);
ini_set('display_errors', 'On');
require('local/credentials.php');
require('inc/constantes.php');
require('inc/routes.php');