Coder Social home page Coder Social logo

drizzle-kit-mirror's Introduction

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:pg --out migrations-folder --schema src/db/schema.ts

Or put your file to drizzle.config.json configuration file:

{
  "out": "./migrations-folder",
  "schema": "./src/db"
}

Upgrading to 0.17.0

Before running any new migrations drizzle-kit will ask you to upgrade in a first place

Migration file structure < 0.17.0

๐Ÿ“ฆ <project root>
 โ”” ๐Ÿ“‚ migrations
    โ”” ๐Ÿ“‚ 20221207174503
       โ”œ ๐Ÿ“œ migration.sql
       โ”œ ๐Ÿ“œ snapshot.json
    โ”” ๐Ÿ“‚ 20230101104503
       โ”œ ๐Ÿ“œ migration.sql
       โ”œ ๐Ÿ“œ snapshot.json

Migration file structure >= 0.17.0

๐Ÿ“ฆ <project root>
 โ”” ๐Ÿ“‚ migrations
    โ”” ๐Ÿ“‚ meta
      โ”œ ๐Ÿ“œ _journal.json
      โ”œ ๐Ÿ“œ 0000_snapshot.json
      โ”œ ๐Ÿ“œ 0001_snapshot.json
    โ”” ๐Ÿ“œ 0000_icy_stranger.sql
    โ”” ๐Ÿ“œ 0001_strange_avengers.sql

To easily migrate from previous folder structure to new you need to run up command in drizzle kit. It's a great helper to upgrade your migrations to new format on each drizzle kit major update

List of commands

Generate SQL migrations based on current .ts schema\


$ drizzle-kit generate:pg
$ drizzle-kit generate:mysql
$ drizzle-kit generate:sqlite \

--config [optional defalut=drizzle.config.json] config file path
--schema path to typescript schema file or folder with multiple schema files
--out [optional default=drizzle/] migrations folder

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

$ drizzle-kit generate:pg --config=./custom.config.json
## runs generate command with custom.config.json 

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

$ drizzle-kit generate:pg --schema=./src/schema.ts --out=./migrations/
## runs generate command and outputs results to ./migration

Introspect existing database and generate typescript schema


$ drizzle-kit introspect:pg
$ drizzle-kit introspect:mysql

drizzle-kit introspect:pg --out=migrations/ --connectionString=postgresql://user:pass@host:port/db_name

drizzle-kit introspect:pg --out=migrations/ --host=0.0.0.0 --port=5432 --user=postgres --password=pass --database=db_name --ssl

Update stale snapshots


$ drizzle-kit up:pg
$ drizzle-kit up:mysql
$ drizzle-kit up:sqlite

--out [optional] migrations folder
--config [optional defalut=drizzle.config.json] config file path

## migrations folder is taken from drizzle.config.json
drizzle-kit up:mysql

drizzle-kit up:mysql --out=migrations/ 

Drop migration


$ drizzle-kit drop \

--out [optional] migrations folder
--config [optional defalut=drizzle.config.json] config file path

Migrations collisions check


$ drizzle-kit check:pg
$ drizzle-kit check:mysql
$ drizzle-kit check:sqlite

--out [optional] migration folder
--config [optional defalut=drizzle.config.json] config file path

## migrations folder is taken from drizzle.config.json
drizzle-kit check:pg

drizzle-kit check:pg --out=migrations/ 

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.