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