1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-03 17:59:33 +02:00

fixed SQL phrase

This commit is contained in:
Nikolay Pultsin 2013-03-19 03:16:05 +04:00
parent b5f399c329
commit 7a42408e72

View file

@ -1399,6 +1399,6 @@ final class SQLiteBooksDatabase extends BooksDatabase {
"book_id INTEGER NOT NULL UNIQUE REFERENCES Books(book_id)," +
"type TEXT NOT NULL," +
"uid TEXT NOT NULL," +
"CONSTRAINT BookUid_Unique(book_id,type,uid))");
"CONSTRAINT BookUid_Unique UNIQUE (book_id,type,uid))");
}
}