indexing2
Some checks failed
Deploy on push / deploy (push) Failing after 9s

This commit is contained in:
Untone 2024-08-06 19:03:43 +03:00
parent ab388af35f
commit e0a44ae199

View File

@ -40,6 +40,6 @@ class Reaction(Base):
quote = Column(String, nullable=True, comment="Original quoted text")
shout = Column(ForeignKey("shout.id"), nullable=False)
created_by = Column(ForeignKey("author.id"), nullable=False)
kind = Column(String, nullable=False)
kind = Column(String, nullable=False, index=True)
oid = Column(String)