MySQL / MariaDB | MongoDB | PostgreSQL | SQLite |
---|---|---|---|
Supported | In Progress | In Progress | In Progress |
Soon.
installation
npm install [package name]
- Description yml properties
# Optional: Name of migrations group
name: Environment Up
# Optional: folder to looking for migrations files (migrations by default)
directory: migrations
# Required: At least one migration you have to define
migrations:
# One migration definition
- migration:
# type of DB
type: mysql
# Filename to execute query or Folder to execute files
file: migration/00-create-table.sql
folder: migration/seeds
# DB port
port: 3306
# DB host
host: localhost
# DB user
user: prohost
# DB password
password: secret
# DB name
database: products
# Load al files and folders
recursive: true