added description field to shout (#75)

This commit is contained in:
Igor Lobanov
2023-08-21 13:30:18 +02:00
committed by GitHub
parent 58d1ae5e67
commit 5d4cfe0819
2 changed files with 2 additions and 0 deletions

View File

@@ -54,6 +54,7 @@ class Shout(Base):
slug = Column(String, unique=True)
cover = Column(String, nullable=True, comment="Cover image url")
lead = Column(String, nullable=True)
description = Column(String, nullable=True)
body = Column(String, nullable=False, comment="Body")
title = Column(String, nullable=True)
subtitle = Column(String, nullable=True)