From 3315ef0f49eac93d579bb9f4f377433af4a61413 Mon Sep 17 00:00:00 2001 From: daitingting Date: Wed, 11 May 2022 05:25:54 +0000 Subject: [PATCH] * Remove comment field of story. --- module/story/model.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/story/model.php b/module/story/model.php index 3f5d681686..bf5d1bc64f 100644 --- a/module/story/model.php +++ b/module/story/model.php @@ -1987,6 +1987,7 @@ class storyModel extends model ->add('lastEditedBy', $this->app->user->account) ->add('lastEditedDate', $now) ->add('assignedDate', $now) + ->remove('comment') ->get(); $this->dao->update(TABLE_STORY)->data($story)->autoCheck()->checkFlow()->where('id')->eq((int)$storyID)->exec();