Fixes empty publicity flags in jobs tables.
authorStéphane Jacob <sj@m4x.org>
Tue, 1 Jun 2010 12:33:13 +0000 (14:33 +0200)
committerStéphane Jacob <sj@m4x.org>
Tue, 1 Jun 2010 14:24:46 +0000 (16:24 +0200)
Signed-off-by: Stéphane Jacob <sj@m4x.org>
upgrade/newdirectory-0.0.1/11_jobs.sql

index 76113ae..b2f787d 100644 (file)
@@ -37,7 +37,7 @@ INSERT IGNORE INTO  profile_job_enum (name, url)
              WHERE  entreprise != '';
 
 INSERT INTO  profile_job (id, pid, jobid, email, pub, email_pub, description)
-     SELECT  e.entrid, e.uid, j.id, e.email, e.pub, e.email_pub,
+     SELECT  e.entrid, e.uid, j.id, e.email, IF(e.pub = '', 'private', e.pub), IF(e.email_pub = '', 'private', e.email_pub),
              CONCAT_WS(', ', IF(e.poste = '', NULL, e.poste), IF(e.fonction = 0, NULL, f.fonction_fr),
                        IF(e.ss_secteur IS NULL , IF(e.secteur IS NULL, NULL, s.label), ss.label))
        FROM  #x4dat#.entreprises       AS e