From: Stéphane Jacob Date: Sun, 19 Jun 2011 11:08:13 +0000 (+0200) Subject: Adds Hedge Fund sector. X-Git-Tag: xorg/1.1.2~11 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=dcf173d8f864cdc3a45847f8ba5d64ae0e86e42f;p=platal.git Adds Hedge Fund sector. Signed-off-by: Stéphane Jacob --- diff --git a/upgrade/1.1.2/08_shark.sql b/upgrade/1.1.2/08_shark.sql new file mode 100644 index 0000000..c45cb3f --- /dev/null +++ b/upgrade/1.1.2/08_shark.sql @@ -0,0 +1,14 @@ +INSERT INTO profile_job_term_enum (name, full_name) + VALUES ('Hedge Fund', 'Hedge Fund (secteur)'); + +SET @jtid = 0; +SELECT @jtid := jtid + FROM profile_job_term_enum + WHERE name = 'Hedge Fund'; + +INSERT INTO profile_job_term_search (search, jtid) + VALUES ('HEDGE', @jtid), ('FUND', @jtid); +INSERT INTO profile_job_term_relation (jtid_1, jtid_2, rel, computed) + VALUES (697, @jtid, 'narrower', 'computed'), (735, @jtid, 'narrower', 'original'), (@jtid, @jtid, 'narrower', 'computed'); + +-- vim:set syntax=mysql: