From: Stéphane Jacob Date: Tue, 26 Apr 2011 11:27:17 +0000 (+0200) Subject: Updates json in newsletter_issues according to 9a6abd. X-Git-Tag: xorg/1.1.1~57 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=1ee148f04a4ef3b950ef4b2e887d086f64a4a28d;p=platal.git Updates json in newsletter_issues according to 9a6abd. Signed-off-by: Stéphane Jacob --- diff --git a/upgrade/1.1.1/11_promo_filter.sql b/upgrade/1.1.1/11_promo_filter.sql new file mode 100644 index 0000000..8b7e335 --- /dev/null +++ b/upgrade/1.1.1/11_promo_filter.sql @@ -0,0 +1,8 @@ +UPDATE newsletter_issues + SET sufb_json = REPLACE(sufb_json, 'Ing.', 'Ingénieur'); +UPDATE newsletter_issues + SET sufb_json = REPLACE(sufb_json, 'M%', 'Master'); +UPDATE newsletter_issues + SET sufb_json = REPLACE(sufb_json, 'PhD', 'Doctorat'); + +-- vim:set syntax=mysql: