Back to Drizzle Orm

`drizzle-kit push`

src/content/docs/drizzle-kit-push.mdx

latest10.9 KB
Original Source

import CodeTab from "@mdx/CodeTab.astro"; import CodeTabs from "@mdx/CodeTabs.astro"; import Section from "@mdx/Section.astro"; import Tab from "@mdx/Tab.astro"; import Tabs from "@mdx/Tabs.astro"; import Callout from "@mdx/Callout.astro"; import Prerequisites from "@mdx/Prerequisites.astro"; import Npx from "@mdx/Npx.astro"; import SchemaFilePaths from "@mdx/SchemaFilePaths.mdx"; import Drivers from "@mdx/Drivers.mdx" import Dialects from "@mdx/Dialects.mdx" import DriversExamples from "@mdx/DriversExamples.mdx"

drizzle-kit push

<Prerequisites> - Get started with Drizzle and `drizzle-kit` - [read here](/docs/get-started) - Drizzle schema fundamentals - [read here](/docs/sql-schema-declaration) - Database connection basics - [read here](/docs/connect-overview) - Drizzle migrations fundamentals - [read here](/docs/migrations) - Drizzle Kit [overview](/docs/kit-overview) and [config file](/docs/drizzle-config-file) docs </Prerequisites>

drizzle-kit push lets you literally push your schema and subsequent schema changes directly to the database while omitting SQL files generation, it's designed to cover code first approach of Drizzle migrations.

<Callout collapsed="How it works under the hood?"> When you run Drizzle Kit `push` command it will: 1. Read through your Drizzle schema file(s) and compose a json snapshot of your schema 2. Pull(introspect) database schema 3. Based on differences between those two it will generate SQL migrations 4. Apply SQL migrations to the database <Section> ```typescript filename="src/schema.ts" import * as p from "drizzle-orm/pg-core";

export const users = p.pgTable("users", { id: p.serial().primaryKey(), name: p.text(), };

┌─────────────────────┐
│ ~ drizzle-kit push │
└─┬───────────────────┘
│ ┌──────────────────────────┐ └ Pull current datatabase schema ---------> │ │ │ │ ┌ Generate alternations based on diff <---- │ DATABASE │ │ │ │ └ Apply migrations to the database -------> │ │ │ └──────────────────────────┘ │ ┌────────────────────────────────────┴────────────────┐ create table users(id serial primary key, name text);

</Section>
</Callout>

It's the best approach for rapid prototyping and we've seen dozens of teams
and solo developers successfully using it as a primary migrations flow in their production applications.
It pairs exceptionally well with blue/green deployment strategy and serverless databases like
[Planetscale](https://planetscale.com), [Neon](https://neon.tech), [Turso](https://turso.tech/drizzle) and others.



<hr/>




`drizzle-kit push` requires you to specify `dialect`, path to the `schema` file(s) and either
database connection `url` or `user:password@host:port/db` params, you can provide them
either via [drizzle.config.ts](/docs/drizzle-config-file) config file or via CLI options:

<CodeTabs items={["With config file", "With CLI options"]}>
<Section>
```ts
// drizzle.config.ts
import { defineConfig } from "drizzle-kit";

export default defineConfig({
  dialect: "postgresql",
  schema: "./src/schema.ts",
  dbCredentials: {
    url: "postgresql://user:password@host:port/dbname",
  },
});
shell
npx drizzle-kit push
</Section>
shell
npx drizzle-kit push --dialect=postgresql --schema=./src/schema.ts --url=postgresql://user:password@host:port/dbname
</CodeTabs>

Schema files path

You can have a single schema.ts file or as many schema files as you want spread out across the project. Drizzle Kit requires you to specify path(s) to them as a glob via schema configuration option.

<SchemaFilePaths />

Multiple configuration files in one project

You can have multiple config files in the project, it's very useful when you have multiple database stages or multiple databases or different databases on the same project:

<Npx> drizzle-kit push --config=drizzle-dev.config.ts drizzle-kit push --config=drizzle-prod.config.ts </Npx> ```plaintext {5-6} 📦 <project root> ├ 📂 drizzle ├ 📂 src ├ 📜 .env ├ 📜 drizzle-dev.config.ts ├ 📜 drizzle-prod.config.ts ├ 📜 package.json └ 📜 tsconfig.json ```

Specifying database driver

<Callout type="warning"> **Expo SQLite** and **OP SQLite** are on-device(per-user) databases, there's no way to `push` migrations there.

For embedded databases Drizzle provides embedded migrations - check out our get started guide. </Callout> Drizzle Kit does not come with a pre-bundled database driver, it will automatically pick available database driver from your current project based on the dialect - see discussion.

Mostly all drivers of the same dialect share the same set of connection params, as for exceptions like aws-data-api, pglight and d1-http - you will have to explicitly specify driver param.

<DriversExamples/>

Including tables, schemas and extensions

drizzle-kit push will by default manage all tables in public schema. You can configure list of tables, schemas and extensions via tablesFilters, schemaFilter and extensionFilters options.

tablesFilterglob based table names filter, e.g. ["users", "user_info"] or "user*". Default is "*"
schemaFilterSchema names filter, e.g. ["public", "drizzle"]. Default is ["public"]
extensionsFiltersList of installed database extensions, e.g. ["postgis"]. Default is []

Let's configure drizzle-kit to only operate with all tables in public schema and let drizzle-kit know that there's a postgis extension installed, which creates it's own tables in public schema, so drizzle can ignore them.

<Section> ```ts filename="drizzle.config.ts" {9-11} import { defineConfig } from "drizzle-kit";

export default defineConfig({ dialect: "postgresql", schema: "./src/schema.ts", dbCredentials: { url: "postgresql://user:password@host:port/dbname", }, extensionsFilters: ["postgis"], schemaFilter: ["public"], tablesFilter: ["*"], });

```shell
npx drizzle-kit push
</Section>

Extended list of configurations

drizzle-kit push has a list of cli-only options

<rem025/>
verboseprint all SQL statements prior to execution
strictalways ask for approval before executing SQL statements
forceauto-accept all data-loss statements
<Npx> drizzle-kit push --strict --verbose --force </Npx> <hr/>

We recommend configuring drizzle-kit through drizzle.config.ts file, yet you can provide all configuration options through CLI if necessary, e.g. in CI/CD pipelines, etc.

dialectrequiredDatabase dialect, one of <Dialects/>
schemarequiredPath to typescript schema file(s) or folder(s) with multiple schema files
driverDrivers exceptions <Drivers/>
tablesFilterTable name filter
schemaFilterSchema name filter. Default: ["public"]
extensionsFiltersDatabase extensions internal database filters
urlDatabase connection string
userDatabase user
passwordDatabase password
hostHost
portPort
databaseDatabase name
configConfiguration file path, default=drizzle.config.ts
<Npx> drizzle-kit push dialect=postgresql schema=src/schema.ts url=postgresql://user:password@host:port/dbname drizzle-kit push dialect=postgresql schema=src/schema.ts driver=pglite url=database/ drizzle-kit push dialect=postgresql schema=src/schema.ts --tablesFilter='user*' --extensionsFilters=postgis url=postgresql://user:password@host:port/dbname </Npx>

Extended example

Let's declare drizzle schema in the project and push it to the database via drizzle-kit push command

plaintext
📦 <project root>
 ├ 📂 src
 │ ├ 📜 schema.ts
 │ └ 📜 index.ts
 ├ 📜 drizzle.config.ts
 └ …

<CodeTabs items={["drizzle.config.ts", "src/schema.ts"]}>

ts
import { defineConfig } from "drizzle-kit";

export default defineConfig({
  dialect: "postgresql",
  schema: "./src/schema.ts",
  dbCredentials: {
    url: "postgresql://user:password@host:port/dbname"
  },
});
ts
import * as p from "drizzle-orm/pg-core";

export const users = p.pgTable("users", {
  id: p.serial().primaryKey(),
  name: p.text(),
})
</CodeTabs>

Now let's run

shell
npx drizzle-kit push

it will pull existing(empty) schema from the database and generate SQL migration and apply it under the hood

sql
CREATE TABLE "users"(
  id serial primary key,
  name text
)

DONE ✅