From 63404fa4f59109f52bf564c809a2c514b08960d5 Mon Sep 17 00:00:00 2001 From: Thomas Ghysels Date: Mon, 6 Dec 2021 00:04:27 +0100 Subject: [PATCH] Allow larger id_token in typeorm adapter Resolves #230 --- packages/typeorm-legacy/src/entities.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/typeorm-legacy/src/entities.ts b/packages/typeorm-legacy/src/entities.ts index bfbc7d53..1b2eb417 100644 --- a/packages/typeorm-legacy/src/entities.ts +++ b/packages/typeorm-legacy/src/entities.ts @@ -78,7 +78,7 @@ export class AccountEntity { @Column({ type: "varchar", nullable: true }) scope!: string | null - @Column({ type: "varchar", nullable: true }) + @Column({ type: "text", nullable: true }) id_token!: string | null @Column({ type: "varchar", nullable: true })