From 0bfdb75fb2888f8ada6eaf38785614e8cbd3a9e8 Mon Sep 17 00:00:00 2001 From: k-utsumi Date: Thu, 26 Jun 2025 17:44:09 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Fix=20`Drizzle=20schema`=20markd?= =?UTF-8?q?own?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/content/docs/sql-schema-declaration.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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