Commit 532012a87b23fa54ad5cf119e148d3cc65d5b3e4
1 parent
d9b30b03
Exists in
master
and in
1 other branch
suppression unicité du nom-pnom dans table users
Showing
1 changed file
with
13 additions
and
0 deletions
Show diff stats
... | ... | @@ -0,0 +1,13 @@ |
1 | +-- use database; | |
2 | + | |
3 | + | |
4 | +-- Suppression de la contrainte d'unicité du nom-pnom | |
5 | +-- Car on peut autoriser 2 homonymes | |
6 | +-- ou encore une meme personne (nom-pnom) avec 2 login différents | |
7 | +-- On recrée un index mais sans unicité | |
8 | +ALTER TABLE users | |
9 | +DROP INDEX nom, | |
10 | +-- SANS contrainte d'unicité | |
11 | +ADD INDEX idx_nom (nom); -- USING BTREE; | |
12 | +-- AVEC contrainte d'unicité | |
13 | +-- ADD UNIQUE idx_nom (nom) USING BTREE; | ... | ... |