1.0.1 • Published 6 years ago
led-liquibase v1.0.1
Node Liquibase  
 
Node.js wrap for Liquibase
Install
$ npm install --save liquibaseUsage
const liquibase = require('liquibase');
liquibase({
  defaultsFile: 'resources/liquibase/liquibase.properties'
  // driver: 'org.postgresql.Driver',
  // classpath: 'lib/postgresql-9.4-1201.jdbc4.jar',
  // changeLogFile: 'resources/liquibase/db.changelog.xml',
  // url: 'jdbc:postgresql://localhost:5432/postgres',
  // username: 'postgres',
  // password: 'admin'
})
.run('update')
.then(() => console.log('success'))
.catch((err) => console.log('fail', err));const liquibase = require('liquibase');
liquibase({
  changeLogFile: 'resources/liquibase/db.changelog.xml',
  url: 'jdbc:postgresql://localhost:5432/postgres',
  username: 'postgres',
  password: 'admin'
})
.run('<action>', '<action-params>')
.then(() => console.log('success'))
.catch((err) => console.log('fail', err));License
MIT © Pablo De Nadai