mirror of
https://gitlab.com/SIGBUS/nyaa.git
synced 2024-12-22 08:49:59 +00:00
Change options in models.py based on AMM feedback.
This commit is contained in:
parent
75e7e942fb
commit
bd4eba9ab7
|
@ -192,7 +192,7 @@ class TorrentBase(DeclarativeHelperBase):
|
||||||
@declarative.declared_attr
|
@declarative.declared_attr
|
||||||
def comments(cls):
|
def comments(cls):
|
||||||
return db.relationship(cls._flavor_prefix('Comment'), uselist=True,
|
return db.relationship(cls._flavor_prefix('Comment'), uselist=True,
|
||||||
cascade="all, delete-orphan", lazy='noload')
|
cascade="all, delete-orphan")
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return '<{0} #{1.id} \'{1.display_name}\' {1.filesize}b>'.format(type(self).__name__, self)
|
return '<{0} #{1.id} \'{1.display_name}\' {1.filesize}b>'.format(type(self).__name__, self)
|
||||||
|
@ -435,7 +435,7 @@ class CommentBase(DeclarativeHelperBase):
|
||||||
@declarative.declared_attr
|
@declarative.declared_attr
|
||||||
def torrent(cls):
|
def torrent(cls):
|
||||||
return db.relationship(cls._flavor_prefix('Torrent'), uselist=False,
|
return db.relationship(cls._flavor_prefix('Torrent'), uselist=False,
|
||||||
back_populates='comments', lazy="noload")
|
back_populates='comments')
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
return '<Comment %r>' % self.id
|
return '<Comment %r>' % self.id
|
||||||
|
|
Loading…
Reference in a new issue