added index to files table

This commit is contained in:
Andreas Steffen
2012-07-19 13:49:35 +02:00
parent 14e14d913b
commit 2f341c540d
@@ -6,6 +6,10 @@ CREATE TABLE files (
type INTEGER NOT NULL,
path TEXT NOT NULL
);
DROP INDEX IF EXISTS files_path;
CREATE INDEX files_path ON files (
path
);
DROP TABLE IF EXISTS products;
CREATE TABLE products (