-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtodoapp.sql
40 lines (33 loc) · 1.02 KB
/
todoapp.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
-- phpMyAdmin SQL Dump
-- version 4.1.14
-- http://www.phpmyadmin.net
--
-- Client : 127.0.0.1
-- Généré le : Mar 13 Novembre 2018 à 09:56
-- Version du serveur : 5.6.17
-- Version de PHP : 5.5.12
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Base de données : `todoapp`
--
CREATE DATABASE IF NOT EXISTS `todoapp` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
USE `todoapp`;
-- --------------------------------------------------------
--
-- Structure de la table `tache`
--
CREATE TABLE IF NOT EXISTS `tache` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`description` varchar(255) NOT NULL,
`date_debut` date NOT NULL,
`date_fin` date NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=8 ;
--
-- Contenu de la table `tache`
--
INSERT INTO `tache` (`id`, `description`, `date_debut`, `date_fin`) VALUES
(5, 'entrainement a 3h', '2018-11-14', '2018-11-23'),
(6, 'manger a 1h', '2018-11-21', '2018-11-17'),
(7, 'lessiver a 2h', '2018-11-24', '2018-11-30');