]> git.phdru.name Git - m_librarian.git/commitdiff
Fix(db): Filenames can be non-ascii
authorOleg Broytman <phd@phdru.name>
Fri, 13 Apr 2018 14:38:34 +0000 (17:38 +0300)
committerOleg Broytman <phd@phdru.name>
Fri, 13 Apr 2018 14:38:34 +0000 (17:38 +0300)
m_librarian/db.py

index 9ae5ce0c539239bc563508deaad15b6fb5e5bdd5..fc3325f516386dfd299758dfab8668d1ae6d9028 100755 (executable)
@@ -53,7 +53,7 @@ class Book(SQLObject):
     series = UnicodeCol(notNull=True)
     ser_no = IntCol()
     archive = StringCol(notNull=True)
-    file = StringCol(notNull=True)
+    file = UnicodeCol(notNull=True)
     size = IntCol(notNull=True)
     lib_id = StringCol(notNull=True)
     deleted = BoolCol(notNull=True)