From 73a7174a60f73b2ab65b355e2a75344f5a5a8dac Mon Sep 17 00:00:00 2001 From: Menci Date: Wed, 29 May 2019 00:48:52 +0800 Subject: [PATCH] Don't cache article --- models/article.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/article.ts b/models/article.ts index a003c90..46e66d5 100644 --- a/models/article.ts +++ b/models/article.ts @@ -9,7 +9,7 @@ declare var syzoj: any; @TypeORM.Entity() export default class Article extends Model { - static cache = true; + static cache = false; @TypeORM.PrimaryGeneratedColumn() id: number;