openbsd-ports/mail/roundcubemail/patches/patch-SQL_sqlite_initial_sql
sthen fe4ec7779a - fix dropdown list in install.php for updates, from upstream
- upstream has the sql fixes too; mention the commit in a comment
2011-12-14 21:56:56 +00:00

16 lines
538 B
Plaintext

$OpenBSD: patch-SQL_sqlite_initial_sql,v 1.2 2011/12/14 21:56:56 sthen Exp $
r5615: Fix broken CREATE INDEX queries in SQLite DDL files
--- SQL/sqlite.initial.sql.orig Wed Dec 14 21:27:21 2011
+++ SQL/sqlite.initial.sql Wed Dec 14 21:27:50 2011
@@ -147,7 +147,7 @@ CREATE TABLE searches (
data text NOT NULL
);
-CREATE UNIQUE INDEX ix_searches_user_type_name (user_id, type, name);
+CREATE UNIQUE INDEX ix_searches_user_type_name ON searches (user_id, type, name);
-- --------------------------------------------------------