]> git.mjollnir.org Git - moodle.git/commitdiff
changes reindexing strategy : deletes records rather than create back table
authordiml <diml>
Wed, 12 Sep 2007 21:23:55 +0000 (21:23 +0000)
committerdiml <diml>
Wed, 12 Sep 2007 21:23:55 +0000 (21:23 +0000)
search db model transfered to block_search. No db model needed here.

search/db/README.txt [deleted file]
search/db/mysql.sql [deleted file]
search/db/postgres7.sql [deleted file]

diff --git a/search/db/README.txt b/search/db/README.txt
deleted file mode 100644 (file)
index 6ee6a18..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-This databse scheme IS NOT installed automatically as other models 
-(blocks or modules), but is internally regenerated by the search engine. 
-Actually mysql and postgres7 supported. 
-
-TODO : change the generation process to the new XMLDB procedure. 
\ No newline at end of file
diff --git a/search/db/mysql.sql b/search/db/mysql.sql
deleted file mode 100644 (file)
index 17c1719..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-CREATE TABLE IF NOT EXISTS `prefix_search_documents` (
-  `id` int(11) NOT NULL auto_increment,
-  `docid` int(11) NOT NULL,
-  `doctype` varchar(12) NOT NULL default 'none',
-  `itemtype` varchar(32) NOT NULL default 'none',
-  `title` varchar(255) NOT NULL default '',
-  `url` varchar(255) NOT NULL default '',
-  `docdate` timestamp NOT NULL default 0,
-  `updated` timestamp NOT NULL default CURRENT_TIMESTAMP,
-  `courseid` int(11) NOT NULL default 0,
-  `groupid` int(11) NOT NULL default 0,
-  PRIMARY KEY  (`id`)
-) ENGINE=MyISAM AUTO_INCREMENT=1;
diff --git a/search/db/postgres7.sql b/search/db/postgres7.sql
deleted file mode 100644 (file)
index c585916..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-CREATE TABLE prefix_search_documents (
-   id SERIAL8 PRIMARY KEY,
-   docid int4 NOT NULL,
-   doctype varchar(12) NOT NULL DEFAULT 'none',
-   itemtype varchar(32) NOT NULL DEFAULT 'none',
-   title varchar(255) NOT NULL default '',
-   url varchar(250) NOT NULL default '',
-   docdate timestamp NOT NULL,
-   updated timestamp NOT NULL DEFAULT NOW(),
-   courseid int4,
-   groupid int4
-);