From 9b25f07c1241fa47f6ae2a3e6368efae36879d02 Mon Sep 17 00:00:00 2001 From: Mitesh Ashar Date: Tue, 13 Dec 2022 21:26:04 +0530 Subject: [PATCH] Use the document profile for the Update.body column. --- funnel/models/update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/funnel/models/update.py b/funnel/models/update.py index eeeda7a82..0b909790e 100644 --- a/funnel/models/update.py +++ b/funnel/models/update.py @@ -20,7 +20,7 @@ BaseScopedIdNameMixin, Commentset, Mapped, - MarkdownCompositeBasic, + MarkdownCompositeDocument, Project, TimestampMixin, TSVectorType, @@ -106,7 +106,7 @@ class Update( ) parent = sa.orm.synonym('project') - body = MarkdownCompositeBasic.create('body', nullable=False) + body = MarkdownCompositeDocument.create('body', nullable=False) #: Update number, for Project updates, assigned when the update is published number = with_roles(