plus-fix
Some checks are pending
deploy / deploy (push) Waiting to run

This commit is contained in:
2023-11-29 23:22:47 +03:00
parent 26682632bc
commit 851ab77f7b
3 changed files with 1 additions and 5 deletions

View File

@@ -13,7 +13,7 @@ class AuthorRating(Base):
id = None # type: ignore
rater = Column(ForeignKey("author.id"), primary_key=True, index=True)
author = Column(ForeignKey("author.id"), primary_key=True, index=True)
value = Column(Integer)
plus = Column(Boolean)
class AuthorFollower(Base):