-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.sql
More file actions
97 lines (77 loc) · 2.56 KB
/
install.sql
File metadata and controls
97 lines (77 loc) · 2.56 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
-- phpMyAdmin SQL Dump
-- version 4.1.9
-- http://www.phpmyadmin.net
--
-- Client : mysql51-34.perso
-- Généré le : Dim 25 Janvier 2015 à 18:15
-- Version du serveur : 5.1.73-2+squeeze+build1+1-log
-- Version de PHP : 5.3.8
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!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 utf8 */;
--
-- Base de données : `noclemain`
--
-- --------------------------------------------------------
--
-- Structure de la table `cot_desserte`
--
CREATE TABLE IF NOT EXISTS `cot_desserte` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_train` int(11) NOT NULL,
`gare` int(11) NOT NULL,
`heure` time NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=152 ;
-- --------------------------------------------------------
--
-- Structure de la table `cot_gare`
--
CREATE TABLE IF NOT EXISTS `cot_gare` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nom` varchar(64) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=33 ;
-- --------------------------------------------------------
--
-- Structure de la table `cot_prise_train`
--
CREATE TABLE IF NOT EXISTS `cot_prise_train` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_user` int(11) NOT NULL,
`id_train` int(11) NOT NULL,
`gare_depart` int(11) NOT NULL,
`gare_arrive` int(11) NOT NULL,
`voiture` int(2) NOT NULL,
`place` int(2) NOT NULL,
`notif` int(1) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=18 ;
-- --------------------------------------------------------
--
-- Structure de la table `cot_train`
--
CREATE TABLE IF NOT EXISTS `cot_train` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`numero` varchar(6) NOT NULL,
`date` date NOT NULL,
`type` varchar(8) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=20 ;
-- --------------------------------------------------------
--
-- Structure de la table `cot_user`
--
CREATE TABLE IF NOT EXISTS `cot_user` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pseudo` varchar(64) NOT NULL,
`mdp` varchar(512) NOT NULL,
`valide` int(1) NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;
/*!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 */;