From 5eebcdb522c0bb9e5835e70b8f39509cf3e8b443 Mon Sep 17 00:00:00 2001 From: Bereket Engida Date: Sat, 15 Mar 2025 16:16:12 +0300 Subject: [PATCH] docs(supabase-migration-guide): add links to schema --- docs/content/docs/guides/supabase-migration-guide.mdx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/content/docs/guides/supabase-migration-guide.mdx b/docs/content/docs/guides/supabase-migration-guide.mdx index 1171ddc635..12cebf5c94 100644 --- a/docs/content/docs/guides/supabase-migration-guide.mdx +++ b/docs/content/docs/guides/supabase-migration-guide.mdx @@ -112,6 +112,15 @@ Run the migration to create the necessary tables in your database. ```bash title="Terminal" npx @better-auth/cli migrate ``` + +This will create the following tables in your database: + +- [`user`](/docs/concepts/database#user) +- [`account`](/docs/concepts/database#account) +- [`session`](/docs/concepts/database#session) +- [`verification`](/docs/concepts/database#verification) + +This tables will be created on the `public` schema. ### Copy the migration script