From f20b88e2db5b8706bd9272ff572b01fc5e4ce70a Mon Sep 17 00:00:00 2001
From: Tomas Cohen Arazi <tomascohen@gmail.com>
Date: Wed, 10 Apr 2013 11:06:45 -0300
Subject: [PATCH] Bug 9819 - Remove 'stopwords' table from kohastructure.sql
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Just that.

To test:
- Apply the patch
- Do a fresh install
- The database structure should be created flawlessly
- There should not be a 'stopwords' table created

Sponsored-by: Universidad Nacional de Córdoba
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
---
 installer/data/mysql/kohastructure.sql | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql
index fa44ff7..8607abe 100644
--- a/installer/data/mysql/kohastructure.sql
+++ b/installer/data/mysql/kohastructure.sql
@@ -2007,15 +2007,6 @@ CREATE TABLE `statistics` ( -- information related to transactions (circulation
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
 
 --
--- Table structure for table `stopwords`
---
-
-DROP TABLE IF EXISTS `stopwords`;
-  CREATE TABLE `stopwords` (
-  `word` varchar(255) default NULL
-) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-
---
 -- Table structure for table subscription_frequencies
 --
 
-- 
2.6.4