From 324008472cc50fd90c2087a06735feb8b821c624 Mon Sep 17 00:00:00 2001 From: zhuotianyuan Date: Tue, 6 Jan 2026 19:00:02 +0800 Subject: [PATCH] =?UTF-8?q?refactor(entity):=20=E5=B0=86=E5=8F=AF=E9=80=89?= =?UTF-8?q?=E5=AD=97=E6=AE=B5=E6=98=8E=E7=A1=AE=E6=A0=87=E8=AE=B0=E4=B8=BA?= =?UTF-8?q?=E5=8F=AF=E9=80=89=E7=B1=BB=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/entity/site.entity.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/entity/site.entity.ts b/src/entity/site.entity.ts index 08b10a5..56fce60 100644 --- a/src/entity/site.entity.ts +++ b/src/entity/site.entity.ts @@ -11,10 +11,10 @@ export class Site { apiUrl: string; @Column({ name: 'website_url', length: 255, nullable: true }) - websiteUrl: string; + websiteUrl?: string; @Column({ name: 'webhook_url', length: 255, nullable: true }) - webhookUrl: string; + webhookUrl?: string; @Column({ length: 255, nullable: true }) consumerKey?: string;