Added missing unique marker on comments table (#2278)

This commit is contained in:
Ozzie Isaacs 2022-01-22 11:51:34 +01:00
parent 35209ede67
commit 81b85445d8
1 changed files with 1 additions and 1 deletions

View File

@ -177,8 +177,8 @@ class Comments(Base):
__tablename__ = 'comments'
id = Column(Integer, primary_key=True)
book = Column(Integer, ForeignKey('books.id'), nullable=False, unique=True)
text = Column(String(collation='NOCASE'), nullable=False)
book = Column(Integer, ForeignKey('books.id'), nullable=False)
def __init__(self, text, book):
self.text = text