Skip to content
Snippets Groups Projects
Commit 17cc3280 authored by Fabien Zucchet's avatar Fabien Zucchet
Browse files

fix: add auto-increment in tables primary keys

parent defa054f
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
-- https://www.phpmyadmin.net/
--
-- Hôte : mysql
-- Généré le : jeu. 19 mars 2020 à 23:24
-- Généré le : ven. 20 mars 2020 à 13:03
-- Version du serveur : 5.7.29
-- Version de PHP : 7.4.3
......@@ -112,6 +112,28 @@ ALTER TABLE `Participant`
--
ALTER TABLE `Score`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT pour les tables déchargées
--
--
-- AUTO_INCREMENT pour la table `Equipe`
--
ALTER TABLE `Equipe`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT pour la table `Participant`
--
ALTER TABLE `Participant`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT pour la table `Score`
--
ALTER TABLE `Score`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment