summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2010-03-13 15:34:24 +0100
committerYorhel <git@yorhel.nl>2010-03-13 15:34:24 +0100
commitb8fbb458cdbf6635c45675a3797292110a739f31 (patch)
treeaf39f8ae60ba4fa49c92d41a1dc3484d990914b9 /Makefile
parentd5bb5bfc9fd4a043be20bb0e7ba68dbb39157862 (diff)
Improved VN search
This adds a new column to the vn table: c_search, which holds the normalized titles for speedy search results using LIKE. Also split some functions from VNDB::Func that didn't require YAWF into a VNDBUtil module, so Multi can also make use of them. The normalization functions are the same for Multi and VNDB, after all. The API and Multi::IRC still use the old search, these should be updated as well.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9ea395df..81562a8f 100644
--- a/Makefile
+++ b/Makefile
@@ -37,7 +37,7 @@
# environments. Patches to improve the portability are always welcome.
-.PHONY: all dirs js skins robots chmod chmod-tladmin multi-start multi-stop multi-restart sql-import update-2.10 update-2.11
+.PHONY: all dirs js skins robots chmod chmod-tladmin multi-start multi-stop multi-restart sql-import update-2.10 update-2.11 update-2.12
all: dirs js skins robots data/config.pl
@@ -141,3 +141,7 @@ update-2.11: all
${runpsql} < util/updates/update_2.11.sql
$(multi-start)
+update-2.12: all
+ $(multi-stop)
+ ${runpsql} < util/updates/update_2.12.sql
+ $(multi-start)