Fixes education inclusion.
[platal.git] / modules / fusionax / Formations.sql
index c1c2222..a966bfb 100644 (file)
@@ -5,8 +5,8 @@ DROP TABLE IF EXISTS `fusionax_formations`;
 CREATE TABLE IF NOT EXISTS `fusionax_formations` (
   FO CHAR(2) NOT NULL COMMENT 'Vaut toujours FO pour cette table',
   ax_id VARCHAR(8) NOT NULL COMMENT 'Id unique de l''ancien',
-  Intitule_diplome VARCHAR(255) NOT NULL DEFAULT 0 COMMENT 'Intitulé du diplôme',
   Intitule_formation VARCHAR(255) NOT NULL DEFAULT 0 COMMENT 'Intitulé de la formation',
+  Intitule_diplome VARCHAR(255) NOT NULL DEFAULT 0 COMMENT 'Intitulé du diplôme',
   Descr_formation VARCHAR(255) NOT NULL COMMENT 'Description de la formation',
   pid INT(11) UNSIGNED DEFAULT NULL,
   eduid INT(4) DEFAULT NULL,
@@ -23,9 +23,9 @@ CREATE TABLE IF NOT EXISTS `fusionax_formations` (
 ) ENGINE=InnoDB, CHARSET=utf8;
 
 LOAD DATA LOCAL INFILE  '{?}Formations.txt' INTO TABLE  fusionax_formations CHARACTER SET utf8 FIELDS TERMINATED BY '\t' LINES TERMINATED BY '\n'
-(FO, ax_id, Intitule_diplome, Intitule_formation, Descr_formation);
+(FO, ax_id, Intitule_formation, Intitule_diplome, Descr_formation);
 
     UPDATE  fusionax_formations    AS f
-INNER JOIN  profile_education_enum AS e ON (f.Intitule_diplome = e.abbreviation)
-       SET  f.Intitule_diplome = e.name
-     WHERE  f.Intitule_diplome != '';
+INNER JOIN  profile_education_enum AS e ON (f.Intitule_formation = e.abbreviation)
+       SET  f.Intitule_formation = e.name
+     WHERE  f.Intitule_formation != '';