Skip to content

Commit 6fb0fa3

Browse files
supporting comments in the schema
1 parent 41d89ce commit 6fb0fa3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/db/prisma/schema.prisma

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,8 +446,12 @@ model Account {
446446
session_state String?
447447
448448
/// The issuer URL of the identity provider that issued this account (e.g., https://github.com)
449-
/// @note: For code-host providers (like GitHub, GitLab, etc.) this will match the external_codeHostUrl
449+
///
450+
/// @note For code-host providers (like GitHub, GitLab, etc.) this will match the external_codeHostUrl
450451
/// of a repo record. This is important for activities like permission syncing.
452+
///
453+
/// @note This field was introduced in v4.15.4 and will not be present for accounts created prior to this version.
454+
/// A lazy migration is performed inside of the `jwt` callback in auth.ts to automatically populate this field.
451455
issuerUrl String?
452456
453457
/// List of repos that this account has access to.

0 commit comments

Comments
 (0)