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,6 +22,7 @@ update suivis set groupes_thematique_id=NULL WHERE groupes_thematique_id = (sele | ||
22 | update suivis set groupes_metier_id=NULL WHERE groupes_metier_id = (select id from groupes_metiers where nom='N/A'); | 22 | update suivis set groupes_metier_id=NULL WHERE groupes_metier_id = (select id from groupes_metiers where nom='N/A'); |
23 | -- c) delete groupes 'N/A' | 23 | -- c) delete groupes 'N/A' |
24 | delete FROM groupes_metiers WHERE nom = 'N/A'; | 24 | delete FROM groupes_metiers WHERE nom = 'N/A'; |
25 | +ALTER TABLE users DROP CONSTRAINT fk_users_groupe_thematique_id; | ||
25 | delete FROM groupes_thematiques WHERE nom = 'N/A'; | 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,7 +38,6 @@ delete FROM sites WHERE nom = 'N/A'; | ||
37 | 38 | ||
38 | -- 5/6/20 : renommé champ fk groupe_thematique_id de la table users en groupes_thematique_id | 39 | -- 5/6/20 : renommé champ fk groupe_thematique_id de la table users en groupes_thematique_id |
39 | -- pour s’harmoniser avec les noms dans les autres tables | 40 | -- pour s’harmoniser avec les noms dans les autres tables |
40 | -ALTER TABLE users DROP CONSTRAINT fk_users_groupe_thematique_id; | ||
41 | ALTER TABLE users CHANGE groupe_thematique_id groupes_thematique_id INT(11) NULL DEFAULT NULL; | 41 | ALTER TABLE users CHANGE groupe_thematique_id groupes_thematique_id INT(11) NULL DEFAULT NULL; |
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; | 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 |