JSPM

drizzle-kit

0.12.14
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2439470
  • Score
    100M100P100Q216056F
  • License MIT

Package Exports

  • drizzle-kit
  • drizzle-kit/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (drizzle-kit) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Drizzle Kit

DrizzleKit - is a CLI migrator tool for DrizzleORM. It is probably one and only tool that lets you completely automatically generate SQL migrations and covers ~95% of the common cases like delitions and renames by prompting user input.
https://github.com/drizzle-team/drizzle-kit-mirror - is a mirror repository for issues.

How it works

drizzle-kit will traverse schema folder or schema file, generate schema snapshot and compare it to the previous version(if there's one).
Based on the difference it will generate all needed SQL migrations and if there're any automatically unresolvable cases like renames it will prompt user for input.

For schema file:

// ./src/db/schema.ts

import { integer, pgTable, serial, text, varchar } from "drizzle-orm-pg";

const users = pgTable("users", {
    id: serial("id").primaryKey(),
    fullName: varchar("full_name", { length: 256 }),
  }, (table) => ({
    nameIdx: index("name_idx", table.fullName),
  })
);

export const authOtp = pgTable("auth_otp", {
  id: serial("id").primaryKey(),
  phone: varchar("phone", { length: 256 }),
  userId: integer("user_id").references(() => users.id),
});

It will generate:

CREATE TABLE IF NOT EXISTS auth_otp (
    "id" SERIAL PRIMARY KEY,
    "phone" character varying(256),
    "user_id" INT
);

CREATE TABLE IF NOT EXISTS users (
    "id" SERIAL PRIMARY KEY,
    "full_name" character varying(256)
);

DO $$ BEGIN
 ALTER TABLE auth_otp ADD CONSTRAINT auth_otp_user_id_fkey FOREIGN KEY ("user_id") REFERENCES users(id);
EXCEPTION
 WHEN duplicate_object THEN null;
END $$;

CREATE INDEX IF NOT EXISTS users_full_name_index ON users (full_name);

Installation & configuration

$ npm install -D drizzle-kit

Running with CLI options

$ npm exec drizzle-kit generate --out migrations-folder --dialect pg --schema src/db/schema.ts

Or put your file to drizzle.config.json configuration file: json { "dialect": "pg", "out": "./migrations-folder", "schema": "./src/db" }

List of commands

$ drizzle-kit generate - generates SQL migrations based on .ts schema
--config [optional defalut=drizzle.config.json] path to an optional config file
--dialect [optional default=pg] database dialect, one of -> pg, mysql, sqlite
--schema path to a schema file or folder with multiple schema files
--out [optional default=drizzle/] place where to store migration files\

$ drizzle-kit generate 
## runs generate command with drizzle.config.json 

$ drizzle-kit generate --config custom.config.json
## runs generate command with custom.config.json 

$ drizzle-kit generate --dialect pg --schema src/schema.ts
## runs generate command and outputs results to ./drizzle

$ drizzle-kit generate --dialect .. --schema .. --out ./migration-folder
## runs generate command and outputs results to ./migration-folder

$ drizzle-kit up - updates stale snapshots --config [optional defalut=drizzle.config.json] path to an optional config file
--dialect [optional default=pg] database dialect, one of -> pg, mysql, sqlite
--schema path to a schema file or folder with multiple schema files\

$ drizzle-kit check - checks for collisions --config [optional defalut=drizzle.config.json] path to an optional config file
--dialect [optional default=pg] database dialect, one of -> pg, mysql, sqlite
--schema path to a schema file or folder with multiple schema files\