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