Adds Hedge Fund sector.
authorStéphane Jacob <sj@m4x.org>
Sun, 19 Jun 2011 11:08:13 +0000 (13:08 +0200)
committerStéphane Jacob <sj@m4x.org>
Sun, 19 Jun 2011 11:08:13 +0000 (13:08 +0200)
Signed-off-by: Stéphane Jacob <sj@m4x.org>
upgrade/1.1.2/08_shark.sql [new file with mode: 0644]

diff --git a/upgrade/1.1.2/08_shark.sql b/upgrade/1.1.2/08_shark.sql
new file mode 100644 (file)
index 0000000..c45cb3f
--- /dev/null
@@ -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: