diff --git a/src/content/docs/sql-schema-declaration.mdx b/src/content/docs/sql-schema-declaration.mdx index 6873624d..21af9ace 100644 --- a/src/content/docs/sql-schema-declaration.mdx +++ b/src/content/docs/sql-schema-declaration.mdx @@ -29,12 +29,12 @@ The most common way to declare your schema with Drizzle is to put all your table This approach works well if you don't have too many table models defined, or if you're okay with keeping them all in one file Example: - ```plaintext +```plaintext 📦 └ 📂 src └ 📂 db └ 📜 schema.ts - ``` +``` In the `drizzle.config.ts` file, you need to specify the path to your schema file. With this configuration, Drizzle will read from the `schema.ts` file and use this information during the migration generation process. For more information