GestionConges-PHP/sql/conges.sql
Alexandre MOTTIER 29a10cf79e
v1.1
2022-10-15 10:45:35 +02:00

14 lines
308 B
SQL

SET NAMES utf8;
SET time_zone = '+00:00';
SET foreign_key_checks = 0;
USE `gestionconges`;
DROP TABLE IF EXISTS `conges`;
CREATE TABLE `conges` (
`datedebut` date NOT NULL,
`datefin` date NOT NULL,
`nbjours` decimal(10,2) NOT NULL,
`type` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;