From 5acff310f720d23636a32b3cc70b3a00088bccb9 Mon Sep 17 00:00:00 2001 From: Bai Date: Thu, 22 Oct 2020 18:23:50 +0800 Subject: [PATCH] =?UTF-8?q?perf(application):=20=E4=BF=AE=E6=94=B9?= =?UTF-8?q?=E8=BF=81=E7=A7=BB=E6=96=87=E4=BB=B6=EF=BC=8C=E8=BF=81=E7=A7=BB?= =?UTF-8?q?=E5=BA=94=E7=94=A8=E5=8C=85=E5=90=ABid=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/applications/migrations/0006_application.py | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/applications/migrations/0006_application.py b/apps/applications/migrations/0006_application.py index 1265b9383..a8fe2b4f2 100644 --- a/apps/applications/migrations/0006_application.py +++ b/apps/applications/migrations/0006_application.py @@ -33,6 +33,7 @@ def common_to_application_json(old_app): category = get_application_category(old_app) date_updated = old_app.date_updated if hasattr(old_app, 'date_updated') else old_app.date_created return { + 'id': old_app.id, 'name': old_app.name, 'type': old_app.type, 'category': category,