Socket
Socket
Sign inDemoInstall

drizzle-kit

Package Overview
Dependencies
Maintainers
4
Versions
629
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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 deletions and renames by prompting user input. <https://github.com


Version published
Weekly downloads
400K
increased by1.6%
Maintainers
4
Weekly downloads
 
Created

What is drizzle-kit?

Drizzle-kit is an npm package designed to simplify database migrations and schema management for JavaScript and TypeScript applications. It provides a set of tools to create, manage, and apply database migrations in a structured and efficient manner.

What are drizzle-kit's main functionalities?

Create Migrations

This feature allows you to create new database migrations. The code sample demonstrates how to create a migration that adds a 'users' table with columns for 'id', 'name', 'email', and timestamps.

const { createMigration } = require('drizzle-kit');

createMigration('add-users-table', (migration) => {
  migration.createTable('users', (table) => {
    table.increments('id').primary();
    table.string('name');
    table.string('email').unique();
    table.timestamps();
  });
});

Apply Migrations

This feature allows you to apply all pending migrations to your database. The code sample shows how to apply migrations using the `applyMigrations` function.

const { applyMigrations } = require('drizzle-kit');

applyMigrations();

Rollback Migrations

This feature allows you to rollback the last applied migration. The code sample demonstrates how to rollback the most recent migration using the `rollbackMigration` function.

const { rollbackMigration } = require('drizzle-kit');

rollbackMigration();

List Migrations

This feature allows you to list all migrations, both applied and pending. The code sample shows how to list migrations using the `listMigrations` function.

const { listMigrations } = require('drizzle-kit');

listMigrations();

Other packages similar to drizzle-kit

FAQs

Package last updated on 07 Jun 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc