We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f8f253 commit 17ccff1Copy full SHA for 17ccff1
docs/3-web-servers/08-database/index.mdx
@@ -131,7 +131,7 @@ DATABASE_URL=postgresql://user:[email protected]:5432/db node main.mjs
131
`.env`ファイルは、環境変数の指定を簡略化するために慣習的に用いられるファイルです。`node --env-file=.env main.mjs`のように指定することで、`.env`ファイルに記述された環境変数を読み込ませることができます。なお、Prismaは`.env`ファイルの内容を自動的に読み込むため、`--env-file`オプションを指定する必要はありません。
132
:::
133
134
-`prisma/schema.prisma`ファイルを、次のように追記し、`ToDo`テーブルとそのカラムを定義します。
+`prisma/schema.prisma`ファイルに、次のように追記し、`ToDo`テーブルとそのカラムを定義します。
135
136
```javascript
137
// This is your Prisma schema file,
0 commit comments