Skip to content

Commit

Permalink
fix(sequelize): increase sequelize id_token column length (#5929)
Browse files Browse the repository at this point in the history
Co-authored-by: Nico Domino <yo@ndo.dev>
  • Loading branch information
pCyril and ndom91 authored Dec 10, 2022
1 parent 6fdb0da commit 2dea891
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/adapter-sequelize/src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const Account = {
expires_at: { type: DataTypes.INTEGER },
token_type: { type: DataTypes.STRING },
scope: { type: DataTypes.STRING },
id_token: { type: DataTypes.STRING },
id_token: { type: DataTypes.TEXT },
session_state: { type: DataTypes.STRING },
userId: { type: DataTypes.UUID },
}
Expand Down

0 comments on commit 2dea891

Please sign in to comment.