npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

sql-migrator-cli

v0.0.4

Published

sql-migrator-cli

Downloads

8

Readme

sql-migrator-cli

A quick and simple command-line interface (CLI) tool for managing database migrations, supporting different database systems. This CLI tool also allows you to generate, apply, and revert database migrations while providing a command to create a new database if needed.

What makes this different from db-migrate or sequelize migrations? This program focuses on using only pure SQL files while avoiding adding any extra javascript files into your project. This allows you to practice writing with SQL while still having an easy way to handle migrations without the extra javascript clutter that other libraries require. While removing js and using only SQL files keeps it simple and good for learning, it doesn't provide a way to easily transfer from one database dialect to another (e.g. MySQL to PostgreSQL).

Usage

Usage: sql-migrator-cli [options] [command]

Options:
  -V, --version                   output the version number
  -e, --env <path>                environment path (default: ".env")
  -c, --config <path>             config path (default: "migrations.json")
  -h, --help                      display help for command

Commands:
  config                          show all config values being used
  gen [options] <migration-name>  generate migration files
  db [options]                    sets up a database connection
  help [command]                  display help for command
Usage: sql-migrator-cli db [options] [command]

sets up a database connection

Options:
  -d, --driver <name>      database driver (default: config file)
  -url <value>             database connection url (default: config file)
  -host <name>             database host (default: config file)
  -p, --port <value>       database port (default: config file)
  -db, --database <name>   database name (default: config file)
  -u, --user <name>        the user for the database (default: config file)
  -pw, --password <value>  the password for the database user (default: config file)
  -h, --help               display help for command (default: config file)

Commands:
  create [name]            create a database with migration table
  create:table [name]      create a table for migrations
  up [options] [table]     apply all migrations
  down [options] [table]   undo migrations
  check [options] [table]  check status of migrations
  help [command]           display help for command

Example

Install sql-migrator-cli globally:

npm i -g sql-migrator-cli

Use the appropriate flags or simply add a config file (default is "migrations.json", you can change this with the -c or --config flag). You can also pass environment variables to the json file!

{
  "driver": "pg",
  "database": "my_database",
  "host": "localhost",
  "password": { "env": "DB_PASSWORD" },
  "port": 5432,
  "user": "user",
  "table": "migrations",
  "migrationsDir": "./migrations"
}

Generate migration files, then write your SQL:

sql-migrator gen my-first-migration

Create a database with migrations table:

sql-migrator db create

Run migrations:

sql-migrator db up

No config json file, no problem:

sql-migrator db -d pg -db my_database --host localhost -p 5432 -pw supersecret -u postgres up migrations_table -f ./migration-files