From e27523fd07301ae78007cddda3e82d7da99acdb4 Mon Sep 17 00:00:00 2001 From: Bereket Engida Date: Sun, 27 Jul 2025 22:00:46 -0700 Subject: [PATCH] chore: cleanup database guide --- docs/content/docs/concepts/database.mdx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/content/docs/concepts/database.mdx b/docs/content/docs/concepts/database.mdx index 17f3848082..02a0c1ca04 100644 --- a/docs/content/docs/concepts/database.mdx +++ b/docs/content/docs/concepts/database.mdx @@ -5,11 +5,9 @@ description: Learn how to use a database with Better Auth. ## Adapters -Better Auth requires a database connection to store data. It comes with a query builder called Kysely to manage and query your database. The database will be used to store data such as users, sessions, and more. Plugins can also define their own database tables to store data. +Better Auth requires a database connection to store data. The database will be used to store data such as users, sessions, and more. Plugins can also define their own database tables to store data. -You can pass a database connection to Better Auth by passing a supported database instance, a dialect instance or a Kysely instance in the database options. - -You can learn more about supported Kysely dialects in the [Other relational databases](/docs/adapters/other-relational-databases) documentation. Or if you're using an ORM, you can find our supported ORM adapters in that same category on the documentation sidebar. +You can pass a database connection to Better Auth by passing a supported database instance in the database options. You can learn more about supported database adapters in the [Other relational databases](/docs/adapters/other-relational-databases) documentation. ## CLI