Skip to content

Commit

Permalink
docs: update drizzle instructions (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
onmax authored May 16, 2024
1 parent 224857f commit 26d52b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/content/docs/4.recipes/2.drizzle.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Add a `drizzle.config.ts` file to your project:
import { defineConfig } from 'drizzle-kit'

export default defineConfig({
dialect: 'sqlite',
schema: './server/database/schema.ts',
out: './server/database/migrations'
})
Expand Down Expand Up @@ -82,7 +83,7 @@ Let's add a `db:generate` script to the `package.json`:
```json [package.json]
{
"scripts": {
"db:generate": "drizzle-kit generate:sqlite"
"db:generate": "drizzle-kit generate"
}
}
```
Expand Down

0 comments on commit 26d52b3

Please sign in to comment.