This repository has been archived by the owner on Oct 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
trombinouc.sql
109 lines (90 loc) · 2.68 KB
/
trombinouc.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
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
98
99
100
101
102
103
104
105
106
107
108
109
-- phpMyAdmin SQL Dump
-- version 4.6.4
-- https://www.phpmyadmin.net/
--
-- Client : 127.0.0.1
-- Généré le : Mar 23 Mai 2017 à 08:24
-- Version du serveur : 5.7.14
-- Version de PHP : 7.0.10
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 utf8mb4 */;
--
-- Base de données : `trombinouc`
--
-- --------------------------------------------------------
--
-- Structure de la table `publications`
--
CREATE TABLE `publications` (
`id_publication` int(10) UNSIGNED NOT NULL,
`utilisateur_id` int(11) NOT NULL,
`date` int(10) UNSIGNED NOT NULL,
`message` text NOT NULL,
`rep_id` int(10) UNSIGNED DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `relations`
--
CREATE TABLE `relations` (
`id_relation` int(10) UNSIGNED NOT NULL,
`utilisateur_id` int(10) UNSIGNED NOT NULL,
`ami_id` int(10) UNSIGNED NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `utilisateurs`
--
CREATE TABLE `utilisateurs` (
`id_utilisateur` int(10) UNSIGNED NOT NULL,
`pseudo` varchar(20) NOT NULL,
`mdp` text NOT NULL,
`mail` varchar(30) NOT NULL,
`naissance` year(4) NOT NULL,
`img` text
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Index pour les tables exportées
--
--
-- Index pour la table `publications`
--
ALTER TABLE `publications`
ADD PRIMARY KEY (`id_publication`);
--
-- Index pour la table `relations`
--
ALTER TABLE `relations`
ADD PRIMARY KEY (`id_relation`);
--
-- Index pour la table `utilisateurs`
--
ALTER TABLE `utilisateurs`
ADD PRIMARY KEY (`id_utilisateur`),
ADD UNIQUE KEY `pseudo` (`pseudo`),
ADD UNIQUE KEY `mail` (`mail`);
--
-- AUTO_INCREMENT pour les tables exportées
--
--
-- AUTO_INCREMENT pour la table `publications`
--
ALTER TABLE `publications`
MODIFY `id_publication` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;
--
-- AUTO_INCREMENT pour la table `relations`
--
ALTER TABLE `relations`
MODIFY `id_relation` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;
--
-- AUTO_INCREMENT pour la table `utilisateurs`
--
ALTER TABLE `utilisateurs`
MODIFY `id_utilisateur` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
/*!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 */;