diff --git a/docs/pages/getting-started/adapters/drizzle.mdx b/docs/pages/getting-started/adapters/drizzle.mdx index 84ed30eeda..09c9be0428 100644 --- a/docs/pages/getting-started/adapters/drizzle.mdx +++ b/docs/pages/getting-started/adapters/drizzle.mdx @@ -34,8 +34,8 @@ To use this adapter, you must have setup Drizzle ORM and Drizzle Kit in your pro 1. Create your schema file, based off of one of the ones below. 2. Install a supported database driver to your project, like `@libsql/client`, `mysql2` or `postgres`. 3. Create a `drizzle.config.ts` [file](https://orm.drizzle.team/kit-docs/conf). -4. Generate the initial migration from your schema file with a command like, `drizzle-kit generate:pg`. -5. Apply migrations by using `migrate()` function or push changes directly to your database with a command like, `drizzle-kit push:pg`. +4. Generate the initial migration from your schema file with a command like, `drizzle-kit generate`. +5. Apply migrations by using `migrate()` function or push changes directly to your database with a command like, `drizzle-kit push`. 6. If your schemas differ from the default ones, pass them as the second parameter to the adapter. #### Schemas