Commit 2867c4e4317d730a2279b3dd80d73e5d1d2b6789
1 parent
92712462
Exists in
master
and in
1 other branch
bugfix requete sql
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
database/update/script_sql/db-update-2020-06-10.sql
... | ... | @@ -22,6 +22,7 @@ update suivis set groupes_thematique_id=NULL WHERE groupes_thematique_id = (sele |
22 | 22 | update suivis set groupes_metier_id=NULL WHERE groupes_metier_id = (select id from groupes_metiers where nom='N/A'); |
23 | 23 | -- c) delete groupes 'N/A' |
24 | 24 | delete FROM groupes_metiers WHERE nom = 'N/A'; |
25 | +ALTER TABLE users DROP CONSTRAINT fk_users_groupe_thematique_id; | |
25 | 26 | delete FROM groupes_thematiques WHERE nom = 'N/A'; |
26 | 27 | |
27 | 28 | |
... | ... | @@ -37,7 +38,6 @@ delete FROM sites WHERE nom = 'N/A'; |
37 | 38 | |
38 | 39 | -- 5/6/20 : renommé champ fk groupe_thematique_id de la table users en groupes_thematique_id |
39 | 40 | -- pour s’harmoniser avec les noms dans les autres tables |
40 | -ALTER TABLE users DROP CONSTRAINT fk_users_groupe_thematique_id; | |
41 | 41 | ALTER TABLE users CHANGE groupe_thematique_id groupes_thematique_id INT(11) NULL DEFAULT NULL; |
42 | 42 | ALTER TABLE users ADD CONSTRAINT fk_users_groupe_thematique_id FOREIGN KEY (groupes_thematique_id) REFERENCES groupes_thematiques (id) ON DELETE NO ACTION ON UPDATE NO ACTION; |
43 | 43 | ... | ... |