From 3f3a96297fd813c13ee50c9e9942e629719218de Mon Sep 17 00:00:00 2001 From: Hongbo Wu Date: Wed, 24 Jan 2024 14:55:50 +0800 Subject: [PATCH] update entity --- packages/api/src/entity/subscription.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/api/src/entity/subscription.ts b/packages/api/src/entity/subscription.ts index 32fa8e456..fd17d8d73 100644 --- a/packages/api/src/entity/subscription.ts +++ b/packages/api/src/entity/subscription.ts @@ -86,6 +86,9 @@ export class Subscription { @Column('timestamp', { nullable: true }) refreshedAt?: Date | null + @Column('timestamp', { nullable: true }) + failedAt?: Date | null + @Column('boolean') isPrivate?: boolean | null