From adb0221ec550c34328f7c243e0d1a07fff03e617 Mon Sep 17 00:00:00 2001 From: crutchtheclutch Date: Sun, 16 Mar 2025 15:10:39 -0700 Subject: [PATCH] fix:(docs) typos in database schema tables --- docs/content/docs/concepts/database.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/content/docs/concepts/database.mdx b/docs/content/docs/concepts/database.mdx index 7b402f7eca..4e763576e1 100644 --- a/docs/content/docs/concepts/database.mdx +++ b/docs/content/docs/concepts/database.mdx @@ -193,12 +193,12 @@ Table Name: `session` { name: "createdAt", type: "Date", - description: "Timestamp of when the verification request was created", + description: "Timestamp of when the session was created", }, { name: "updatedAt", type: "Date", - description: "Timestamp of when the verification request was updated", + description: "Timestamp of when the session was updated", }, ]} /> @@ -247,13 +247,13 @@ Table Name: `account` { name: "accessTokenExpiresAt", type: "Date", - description: "The time when the verification request expires", + description: "The time when the access token expires", isOptional: true, }, { name: "refreshTokenExpiresAt", type: "Date", - description: "The time when the verification request expires", + description: "The time when the refresh token expires", isOptional: true, }, { @@ -278,12 +278,12 @@ Table Name: `account` { name: "createdAt", type: "Date", - description: "Timestamp of when the verification request was created", + description: "Timestamp of when the account was created", }, { name: "updatedAt", type: "Date", - description: "Timestamp of when the verification request was updated", + description: "Timestamp of when the account was updated", }, ]} />