Show book language
This commit is contained in:
parent
91c4effcec
commit
288b67d862
18
cps/db.py
18
cps/db.py
|
@ -44,6 +44,11 @@ books_ratings_link = Table('books_ratings_link', Base.metadata,
|
||||||
Column('rating', Integer, ForeignKey('ratings.id'), primary_key=True)
|
Column('rating', Integer, ForeignKey('ratings.id'), primary_key=True)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
books_languages_link = Table('books_languages_link', Base.metadata,
|
||||||
|
Column('book', Integer, ForeignKey('books.id'), primary_key=True),
|
||||||
|
Column('lang_code', Integer, ForeignKey('languages.id'), primary_key=True)
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class Comments(Base):
|
class Comments(Base):
|
||||||
__tablename__ = 'comments'
|
__tablename__ = 'comments'
|
||||||
|
@ -114,6 +119,18 @@ class Ratings(Base):
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return u"<Ratings('{0}')>".format(self.rating)
|
return u"<Ratings('{0}')>".format(self.rating)
|
||||||
|
|
||||||
|
class Languages(Base):
|
||||||
|
__tablename__ = 'languages'
|
||||||
|
|
||||||
|
id = Column(Integer, primary_key=True)
|
||||||
|
lang_code = Column(String)
|
||||||
|
|
||||||
|
def __init__(self,lang_code):
|
||||||
|
self.lang_code = lang_code
|
||||||
|
|
||||||
|
def __repr__(self):
|
||||||
|
return u"<Languages('{0}')>".format(self.lang_code)
|
||||||
|
|
||||||
class Data(Base):
|
class Data(Base):
|
||||||
__tablename__ = 'data'
|
__tablename__ = 'data'
|
||||||
|
|
||||||
|
@ -151,6 +168,7 @@ class Books(Base):
|
||||||
data = relationship('Data', backref='books')
|
data = relationship('Data', backref='books')
|
||||||
series = relationship('Series', secondary=books_series_link, backref='books')
|
series = relationship('Series', secondary=books_series_link, backref='books')
|
||||||
ratings = relationship('Ratings', secondary=books_ratings_link, backref='books')
|
ratings = relationship('Ratings', secondary=books_ratings_link, backref='books')
|
||||||
|
languages = relationship('Languages', secondary=books_languages_link, backref='books')
|
||||||
|
|
||||||
def __init__(self, title, sort, timestamp, pubdate, series_index, last_modified, path, has_cover, authors, tags):
|
def __init__(self, title, sort, timestamp, pubdate, series_index, last_modified, path, has_cover, authors, tags):
|
||||||
self.title = title
|
self.title = title
|
||||||
|
|
Loading…
Reference in New Issue
Block a user