dockerfile-update-3
Some checks failed
Deploy on push / deploy (push) Failing after 28s

This commit is contained in:
2024-02-25 19:27:41 +03:00
parent 3b5a6973ef
commit feea5845a8
3 changed files with 73 additions and 16 deletions

View File

@@ -41,4 +41,6 @@ class Author(Base):
updated_at = Column(Integer, nullable=False, default=lambda: int(time.time()))
deleted_at = Column(Integer, nullable=True, comment='Deleted at')
search_vector = Column(TSVectorType("name", "slug", "bio", "about", regconfig="pg_catalog.russian"))
search_vector = Column(
TSVectorType('name', 'slug', 'bio', 'about', regconfig='pg_catalog.russian')
)