]> git.phdru.name Git - m_librarian.git/commitdiff
Add indices
authorOleg Broytman <phd@phdru.name>
Thu, 24 Dec 2015 15:13:02 +0000 (18:13 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 24 Dec 2015 15:13:02 +0000 (18:13 +0300)
m_librarian/db.py

index c77e32fc554a092f18dfddaf6d782ce2efa0560b..98e541e95732378344f2e6f47b6b5f2cb1af2f3c 100755 (executable)
@@ -1,12 +1,12 @@
 #! /usr/bin/env python
 
 __all__ = ['Author', 'Book', 'Extension', 'Genre', 'Language',
-           'init_db', 'insert_name',
+           'init_db', 'insert_name', 'update_counters',
            ]
 
 import os
 from sqlobject import SQLObject, StringCol, UnicodeCol, IntCol, BoolCol, \
-    ForeignKey, DateCol, RelatedJoin, \
+    ForeignKey, DateCol, DatabaseIndex, RelatedJoin, \
     connectionForURI, sqlhub, SQLObjectNotFound, dberrors
 from .config import ml_conf
 
@@ -54,6 +54,7 @@ if connection.dbName == 'sqlite':
 class Author(SQLObject):
     name = UnicodeCol(unique=True)
     count = IntCol()
+    count_idx = DatabaseIndex('count')
     books = RelatedJoin('Book', otherColumn='book_id')
 
 
@@ -71,23 +72,27 @@ class Book(SQLObject):
     extension = ForeignKey('Extension')
     date = DateCol()
     language = ForeignKey('Language')
+    archive_file_idx = DatabaseIndex('archive', 'file', unique=True)
 
 
 class Extension(SQLObject):
     name = StringCol(unique=True)
     count = IntCol()
+    count_idx = DatabaseIndex('count')
 
 
 class Genre(SQLObject):
     name = StringCol(unique=True)
     title = UnicodeCol()
     count = IntCol()
+    count_idx = DatabaseIndex('count')
     books = RelatedJoin('Book', otherColumn='book_id')
 
 
 class Language(SQLObject):
     name = StringCol(unique=True)
     count = IntCol()
+    count_idx = DatabaseIndex('count')
 
 
 def init_db():