This repository has been archived by the owner on Jan 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
drive.txt
166 lines (132 loc) · 4.4 KB
/
drive.txt
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
-- phpMyAdmin SQL Dump
-- version 5.1.1
-- https://www.phpmyadmin.net/
--
-- Hôte : 127.0.0.1:3306
-- Généré le : ven. 24 juin 2022 à 19:28
-- Version du serveur : 5.7.36
-- Version de PHP : 8.0.13
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+02:00";
--
-- Base de données : `drive`
--
CREATE DATABASE IF NOT EXISTS `drive` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `drive`;
-- --------------------------------------------------------
--
-- Structure de la table `appartenir`
--
DROP TABLE IF EXISTS `appartenir`;
CREATE TABLE IF NOT EXISTS `appartenir` (
`id_fichier` int(10) UNSIGNED NOT NULL,
`id_tag` int(10) UNSIGNED NOT NULL,
PRIMARY KEY (`id_fichier`,`id_tag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Structure de la table `attribuer`
--
DROP TABLE IF EXISTS `attribuer`;
CREATE TABLE IF NOT EXISTS `attribuer` (
`email` varchar(64) NOT NULL,
`id_tag` int(10) UNSIGNED NOT NULL,
`ecriture` tinyint(1) NOT NULL,
`lecture` tinyint(1) NOT NULL,
PRIMARY KEY (`email`,`id_tag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Structure de la table `caracteriser`
--
DROP TABLE IF EXISTS `caracteriser`;
CREATE TABLE IF NOT EXISTS `caracteriser` (
`id_tag` int(10) UNSIGNED NOT NULL,
`nom_categorie_tag` varchar(64) NOT NULL,
PRIMARY KEY (`id_tag`,`nom_categorie_tag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Déchargement des données de la table `caracteriser`
--
INSERT INTO `caracteriser` (`id_tag`, `nom_categorie_tag`) VALUES
(1, 'autres');
-- --------------------------------------------------------
--
-- Structure de la table `categorie_tag`
--
DROP TABLE IF EXISTS `categorie_tag`;
CREATE TABLE IF NOT EXISTS `categorie_tag` (
`nom_categorie_tag` varchar(64) NOT NULL,
PRIMARY KEY (`nom_categorie_tag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Déchargement des données de la table `categorie_tag`
--
INSERT INTO `categorie_tag` (`nom_categorie_tag`) VALUES
('autres');
-- --------------------------------------------------------
--
-- Structure de la table `fichier`
--
DROP TABLE IF EXISTS `fichier`;
CREATE TABLE IF NOT EXISTS `fichier` (
`id_fichier` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`email` varchar(64) NOT NULL,
`source` varchar(125) NOT NULL,
`nom_fichier` varchar(125) NOT NULL,
`date_publication` date NOT NULL,
`date_derniere_modification` date NOT NULL,
`taille_Mo` float UNSIGNED NOT NULL,
`duree` varchar(30) DEFAULT NULL,
`type` varchar(5) NOT NULL,
`extension` varchar(8) NOT NULL,
PRIMARY KEY (`id_fichier`) USING BTREE
) ENGINE=MyISAM AUTO_INCREMENT=231 DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Structure de la table `fichier_supprime`
--
DROP TABLE IF EXISTS `fichier_supprime`;
CREATE TABLE IF NOT EXISTS `fichier_supprime` (
`id_fichier` int(10) UNSIGNED NOT NULL,
`date_suppression` date NOT NULL,
PRIMARY KEY (`id_fichier`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Structure de la table `tag`
--
DROP TABLE IF EXISTS `tag`;
CREATE TABLE IF NOT EXISTS `tag` (
`id_tag` int(10) UNSIGNED NOT NULL AUTO_INCREMENT,
`nom_tag` varchar(64) NOT NULL,
PRIMARY KEY (`id_tag`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
--
-- Déchargement des données de la table `tag`
--
INSERT INTO `tag` (`id_tag`, `nom_tag`) VALUES
(1, 'sans tags');
-- --------------------------------------------------------
--
-- Structure de la table `utilisateur`
--
DROP TABLE IF EXISTS `utilisateur`;
CREATE TABLE IF NOT EXISTS `utilisateur` (
`email` varchar(64) NOT NULL,
`prenom` varchar(64) NOT NULL,
`nom` varchar(64) NOT NULL,
`mot_de_passe` varchar(250) DEFAULT NULL,
`descriptif` varchar(256) DEFAULT NULL,
`role` varchar(6) DEFAULT NULL,
`date_inscription` date DEFAULT NULL,
`compte_supprime` tinyint(1) NOT NULL,
PRIMARY KEY (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Déchargement des données de la table `utilisateur`
--
INSERT INTO `utilisateur` (`email`, `prenom`, `nom`, `mot_de_passe`, `descriptif`, `role`, `date_inscription`, `compte_supprime`) VALUES
('[email protected]', 'LesBriques', 'Rouges', '$2y$10$DEl5PsVTQ73aO/T04UNO8.P16kUE4KVHCz05T4z.kivNFlRU0NkO.', 'Compte administrateur par défaut', 'admin', '2022-06-24', 0);
COMMIT;