Giter VIP home page Giter VIP logo

node-raw-sql-migrations's Introduction

node-raw-migrations

raw SQL migrations library for Node.js

Example

In your project

// migrate.js
const path = require('path');

require('sql-migrations').run({
  // configuration here. See the Configuration section
});

CLI

run node ./migrate.js with arguments


node ./migrate create migration_name

will create a migration file

./migrations/1415860098827_migration_name.sql

node ./migrate migrate

will run all pending migrations

Programmatic API

Migrate

In your project

require('sql-migrations').migrate({
  // configuration here. See the Configuration section
});

This returns a promise which resolves/rejects whenever the migration is complete.

Configuration

Configuration should be specified as below:

const configuration = {
  migrationsDir: path.resolve(__dirname, 'migrations'), // This is the directory that should contain your SQL migrations.
  host: 'localhost', // Database host
  port: 5432, // Database port
  db: 'sql_migrations', // Database name
  user: 'postgres', // Database username
  password: 'example', // Database password
  adapter: 'pg', // Database adapter: pg, mysql
  // Parameters are optional. If you provide them then any occurrences of the parameter (i.e. FOO) in the SQL scripts will be replaced by the value (i.e. bar).
  parameters: {
      "FOO": "bar"
  },
  minMigrationTime: new Date('2018-01-01').getTime() // Optional. Skip migrations before this before this time.
};

You can also swap out the default logger (the console object) for another one that supports the log and error methods. You should do this before running any other commands:

require('sql-migrations').setLogger({
  log: function() {},
  error: function() {}
});

Migration files

Write raw sql in your migrations. You can also include placeholders which will be substituted. example

-- ./migrations/1415860098827_migration_name.sql
create table "test_table" (id bigint, name varchar(255));

node-raw-sql-migrations's People

Contributors

jonatanflores avatar

Watchers

 avatar  avatar

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.