diff --git a/pkg/database/post_report.go b/pkg/database/post_report.go index e531952..33992ca 100644 --- a/pkg/database/post_report.go +++ b/pkg/database/post_report.go @@ -120,7 +120,7 @@ func UpdatePostReport(ctx context.Context, postReport models.PostReport) error { ReportState: postReport.ReportState, } - result := client.WithContext(ctx).Model(&updatePost).Update("deleted_at", gorm.DeletedAt{}) + result := client.WithContext(ctx).Model(&updatePost).Updates(updatePost) if result.Error != nil { if errors.Is(result.Error, gorm.ErrRecordNotFound) { return utils.HandleError(ctx, span, localLogger, &otterError.Database{Reason: otterError.NoDataFound})