]> git.phdru.name Git - m_librarian.git/commitdiff
Fix Db schema
authorOleg Broytman <phd@phdru.name>
Thu, 24 Dec 2015 14:10:17 +0000 (17:10 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 24 Dec 2015 14:10:17 +0000 (17:10 +0300)
Books and authors, Books and genres are linked with many-to-many
relations: there are lists of authors and genres for every book.

m_librarian/db.py

index 7cd53a17c7bb78b38938901ccac59b0c53f94375..6888ab8d418fe7f0c3845d244c95daa7f5e18a28 100755 (executable)
@@ -6,7 +6,8 @@ __all__ = ['Author', 'Book', 'Extension', 'Genre', 'Language',
 
 import os
 from sqlobject import SQLObject, StringCol, UnicodeCol, IntCol, BoolCol, \
-    ForeignKey, DateCol, connectionForURI, sqlhub, SQLObjectNotFound, dberrors
+    ForeignKey, DateCol, RelatedJoin, \
+    connectionForURI, sqlhub, SQLObjectNotFound, dberrors
 from .config import ml_conf
 
 try:
@@ -45,11 +46,12 @@ sqlhub.processConnection = connectionForURI(db_uri)
 class Author(SQLObject):
     name = UnicodeCol(unique=True)
     count = IntCol()
+    books = RelatedJoin('Book', otherColumn='book_id')
 
 
 class Book(SQLObject):
-    author = ForeignKey('Author')
-    genre = ForeignKey('Genre')
+    authors = RelatedJoin('Author')
+    genres = RelatedJoin('Genre')
     title = UnicodeCol()
     series = UnicodeCol()
     ser_no = IntCol()
@@ -58,7 +60,7 @@ class Book(SQLObject):
     size = IntCol()
     lib_id = StringCol()
     deleted = BoolCol()
-    ext = ForeignKey('Extension')
+    extension = ForeignKey('Extension')
     date = DateCol()
     language = ForeignKey('Language')
 
@@ -72,6 +74,7 @@ class Genre(SQLObject):
     name = StringCol(unique=True)
     title = UnicodeCol()
     count = IntCol()
+    books = RelatedJoin('Book', otherColumn='book_id')
 
 
 class Language(SQLObject):