X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=upgrade%2Fnewdirectory-0.0.1%2F10_promotion.sql;h=7dec54d9461c9a9d32037f89340a56838d70d62a;hb=e50f74d50fb29c50325120aec408611c9407c6d9;hp=9eaaf2806cc14c59adc173fac22fe5e47458bd37;hpb=225b4e8076bb652982eb13c16b0f832a873c6b5e;p=platal.git diff --git a/upgrade/newdirectory-0.0.1/10_promotion.sql b/upgrade/newdirectory-0.0.1/10_promotion.sql index 9eaaf28..7dec54d 100644 --- a/upgrade/newdirectory-0.0.1/10_promotion.sql +++ b/upgrade/newdirectory-0.0.1/10_promotion.sql @@ -1,18 +1,12 @@ -INSERT INTO profile_education (id, uid, grad_year, entry_year, eduid, degreeid, flags) +INSERT INTO profile_education (id, pid, grad_year, entry_year, eduid, degreeid, flags) SELECT 100, u.user_id, u.promo_sortie, u.promo, e.id, d.id, 'primary' - FROM auth_user_md5 AS u + FROM #x4dat#.auth_user_md5 AS u LEFT JOIN profile_education_enum AS e ON (e.abbreviation = "X") LEFT JOIN profile_education_degree_enum AS d ON (d.degree = "Ingénieur"); -CREATE TABLE profile_display ( - uid INT(11) NOT NULL DEFAULT 0, - promo_display VARCHAR(255) DEFAULT '' NOT NULL, - PRIMARY KEY(uid) -) CHARSET=utf8; - -INSERT IGNORE INTO profile_display (uid, promo_display) - SELECT uid, CONCAT("X", entry_year) - FROM profile_education - WHERE FIND_IN_SET('primary', flags); + UPDATE profile_display AS d +INNER JOIN profile_education AS e ON (d.pid = e.pid) + SET d.promo = CONCAT("X", entry_year) + WHERE FIND_IN_SET('primary', e.flags); -- vim:set syntax=mysql: