Drop redundant index on fulltextWords

This commit is contained in:
Dan Stillman 2008-06-25 00:22:25 +00:00
parent 245954b876
commit 19b08a604a
2 changed files with 2 additions and 1 deletions

View file

@ -183,7 +183,6 @@ CREATE TABLE fulltextWords (
wordID INTEGER PRIMARY KEY,
word TEXT UNIQUE
);
CREATE INDEX fulltextWords_word ON fulltextWords(word);
CREATE TABLE fulltextItemWords (
wordID INT,