aboutsummaryrefslogtreecommitdiffstats
path: root/www/mnoGoSearch-current/files/msql_ispell.txt
diff options
context:
space:
mode:
Diffstat (limited to 'www/mnoGoSearch-current/files/msql_ispell.txt')
-rw-r--r--www/mnoGoSearch-current/files/msql_ispell.txt21
1 files changed, 0 insertions, 21 deletions
diff --git a/www/mnoGoSearch-current/files/msql_ispell.txt b/www/mnoGoSearch-current/files/msql_ispell.txt
deleted file mode 100644
index 12936c8bf252..000000000000
--- a/www/mnoGoSearch-current/files/msql_ispell.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-DROP TABLE affix\g
-DROP TABLE spell\g
-
-CREATE TABLE affix (
- flag char(1) NOT NULL,
- type char(1) NOT NULL,
- lang char(3) NOT NULL,
- mask char(32) NOT NULL,
- find char(32) NOT NULL,
- repl char(32) NOT NULL
-) \g
-
-CREATE TABLE spell (
- word char(64) NOT NULL,
- flag text(32) NOT NULL,
- lang char(3) NOT NULL
-) \g
-
-
-CREATE INDEX affix_flag ON affix (flag)\g
-CREATE INDEX spell_word ON spell (word)\g